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

36 lines
475 B
JavaScript
Raw Normal View History

const schema = {
name: {
label: 'Name',
type: String,
2018-06-22 20:55:22 +09:00
canRead: ['admins'],
},
value: {
label: 'Value',
type: Object,
2018-06-22 20:55:22 +09:00
canRead: ['admins'],
},
defaultValue: {
label: 'Default Value',
type: Object,
2018-06-22 20:55:22 +09:00
canRead: ['admins'],
},
isPublic: {
label: 'Public',
type: Boolean,
2018-06-22 20:55:22 +09:00
canRead: ['admins'],
},
description: {
label: 'Description',
type: String,
2018-06-22 20:55:22 +09:00
canRead: ['admins'],
},
};
export default schema;