mirror of
https://github.com/vale981/grapher
synced 2025-03-11 21:36:39 -04:00
22 lines
345 B
JavaScript
22 lines
345 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
|
||
|
}
|
||
|
})
|