Implemented permission updateing

ref #6
This commit is contained in:
2020-12-18 16:05:25 +01:00
parent ff3a5b4545
commit 882065470a
6 changed files with 113 additions and 22 deletions

View File

@@ -22,4 +22,15 @@ export class PermissionIdsNotMatchingError extends NotAcceptableError {
@IsString()
message = "The id's don't match!! \n And if you wanted to change a permission's id: This isn't allowed"
}
/**
* Error to throw when a permission get's provided without a principal.
*/
export class PermissionNeedsPrincipalError extends NotAcceptableError {
@IsString()
name = "PermissionNeedsPrincipalError"
@IsString()
message = "You provided no principal for this permission."
}