mirror of
https://github.com/vale981/grapher
synced 2025-03-06 10:01:40 -05:00
40 lines
No EOL
642 B
JavaScript
40 lines
No EOL
642 B
JavaScript
import { SimpleSchema } from 'meteor/aldeed:simple-schema';
|
|
|
|
export default new SimpleSchema({
|
|
firewall: {
|
|
type: Function,
|
|
optional: true
|
|
},
|
|
|
|
maxLimit: {
|
|
type: Number,
|
|
optional: true,
|
|
min: 1
|
|
},
|
|
|
|
maxDepth: {
|
|
type: Number,
|
|
optional: true,
|
|
min: 1
|
|
},
|
|
|
|
restrictedFields: {
|
|
type: [String],
|
|
optional: true
|
|
},
|
|
|
|
restrictedLinks: {
|
|
type: [String],
|
|
optional: true
|
|
},
|
|
|
|
publication: {
|
|
type: Boolean,
|
|
defaultValue: true
|
|
},
|
|
|
|
method: {
|
|
type: Boolean,
|
|
defaultValue: true
|
|
}
|
|
}) |