mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
import type { Permission } from './Permissions';
|
|
|
|
export enum AclMode {
|
|
control = 'control',
|
|
}
|
|
|
|
// Adds a control field to the permissions to specify this WAC-specific value
|
|
export type AclPermission = Permission & {
|
|
[mode in AclMode]?: boolean;
|
|
};
|