Add choral-membership

This commit is contained in:
2025-04-18 12:08:31 +02:00
parent 3cb23ef4b7
commit d524e765ce
9 changed files with 126 additions and 9 deletions

View File

@@ -3,16 +3,16 @@ import type { Schema, Struct } from '@strapi/strapi';
export interface UserPermissions extends Struct.ComponentSchema {
collectionName: 'components_user_permissions';
info: {
description: '';
displayName: 'permissions';
icon: 'key';
};
attributes: {
active: Schema.Attribute.Boolean;
canRead: Schema.Attribute.Boolean;
canWrite: Schema.Attribute.Boolean;
module: Schema.Attribute.Enumeration<
['information', 'chat', 'board', 'calendar', 'users']
>;
read: Schema.Attribute.Boolean;
write: Schema.Attribute.Boolean;
};
}