@appsemble/lang-sdk
Version:
Language SDK for Appsemble
26 lines (25 loc) • 740 B
JavaScript
export const SecurityCronDefinition = {
type: 'object',
description: 'This describes the permissions that unauthenticated users have.',
additionalProperties: false,
properties: {
inherits: {
type: 'array',
minItems: 1,
description: `The name of the role to inherit from.
Note that this role must exist.
`,
items: {
type: 'string',
},
},
permissions: {
type: 'array',
description: 'Specific permissions within the app, which unauthenticated users should have',
items: {
type: 'string',
},
},
},
};
//# sourceMappingURL=SecurityCronDefinition.js.map