mirror of
https://github.com/vale981/grapher
synced 2025-03-06 10:01:40 -05:00
28 lines
No EOL
436 B
JavaScript
28 lines
No EOL
436 B
JavaScript
export default new SimpleSchema({
|
|
firewall: {
|
|
type: Function,
|
|
optional: true
|
|
},
|
|
|
|
publication: {
|
|
type: Boolean,
|
|
defaultValue: true
|
|
},
|
|
|
|
method: {
|
|
type: Boolean,
|
|
defaultValue: true
|
|
},
|
|
|
|
embody: {
|
|
type: Object,
|
|
blackbox: true,
|
|
optional: true
|
|
},
|
|
|
|
schema: {
|
|
type: Object,
|
|
blackbox: true,
|
|
optional: true
|
|
}
|
|
}) |