MediaService: Implement delete feature

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2020-10-17 21:54:08 +02:00
parent db869418d4
commit 9e7e15a20a
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
2 changed files with 37 additions and 1 deletions

View file

@ -5,3 +5,7 @@ export class NotInDBError extends Error {
export class ClientError extends Error {
name = 'ClientError';
}
export class PermissionError extends Error {
name = 'PermissionError';
}