Code + comment cleanup for the enums

ref #39
This commit is contained in:
Nicolai Ort 2020-12-20 19:39:13 +01:00
parent 75332983c2
commit a03f1a438d
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,6 @@
/**
* This enum contains all posible actions for permissions.
*/
export enum PermissionAction {
GET = 'GET',
CREATE = 'CREATE',

View File

@ -1,3 +1,6 @@
/**
* This enum contains all posible targets for permissions.
*/
export enum PermissionTarget {
RUNNER = 'RUNNER',
ORGANISATION = 'ORGANISATION',