backend/src/models/enums/PermissionTargets.ts
Nicolai Ort cd7e9b86b4
All checks were successful
continuous-integration/drone/pr Build is passing
Renamedpermisssions from *Organisation* to *Organization*📝
ref #117
2021-01-24 18:43:29 +01:00

19 lines
444 B
TypeScript

/**
* This enum contains all posible targets for permissions.
*/
export enum PermissionTarget {
RUNNER = 'RUNNER',
ORGANIZATION = 'ORGANIZATION',
TEAM = 'TEAM',
TRACK = 'TRACK',
USER = 'USER',
USERGROUP = 'USERGROUP',
PERMISSION = 'PERMISSION',
STATSCLIENT = 'STATSCLIENT',
DONOR = 'DONOR',
SCAN = 'SCAN',
STATION = 'STATION',
CARD = 'CARD',
DONATION = 'DONATION',
CONTACT = 'CONTACT'
}