chore: add missing FILE_CITATIONS permission to IRole interface

This commit is contained in:
Danny Avila 2025-08-20 00:54:35 -04:00
parent 1c7b3b53da
commit 6873b396ea
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956

View file

@ -46,5 +46,8 @@ export interface IRole extends Document {
[PermissionTypes.FILE_SEARCH]?: {
[Permissions.USE]?: boolean;
};
[PermissionTypes.FILE_CITATIONS]?: {
[Permissions.USE]?: boolean;
};
};
}