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

View File

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