Vulcan/packages/vulcan-debug/lib/modules/settings/schema.js

36 lines
490 B
JavaScript
Raw Normal View History

const schema = {
name: {
label: 'Name',
type: String,
viewableBy: ['admins'],
},
value: {
label: 'Value',
type: Object,
viewableBy: ['admins'],
},
defaultValue: {
label: 'Default Value',
type: Object,
viewableBy: ['admins'],
},
isPublic: {
label: 'Public',
type: Boolean,
viewableBy: ['admins'],
},
description: {
label: 'Description',
type: String,
viewableBy: ['admins'],
},
};
export default schema;