AccessControl
[ Interface ]
export interface AccessControl {
accessright: string;
group: string;
permission: 'Allow' | 'Deny' | 'Inherit';
}
Properties
Name | Type | Description |
---|---|---|
accessright | Name of the access right, which is described here. | |
group | Name of the group that addresses this access right. | |
permission | 'Allow', 'Deny', 'Inherit' | Fixed strings that define whether a right should be granted, denied or undefined. |
Schema: tchmi:framework#/definitions/AccessConfig
Available from 1.8 |