Skip to content

IGrants

Defined in: src/types/IGrants.ts:59

The grants object passed to / returned by AccessControl. Maps roles to their granted permissions.

const grants: IGrants = {
admin: {
$extend: ['editor'],
video: { delete: [{ possession: 'any', attributes: ['*'] }] }
},
editor: {
video: { read: [{ possession: 'any', attributes: ['*'] }] }
}
};

[role: string]: IGrantsItem