Updated the put methods and cleaned up a shitload of comments #42

Merged
niggl merged 32 commits from feature/39-update_puts into dev 2020-12-21 16:39:21 +00:00
Showing only changes of commit ee76f1c0e8 - Show all commits

View File

@ -3,14 +3,15 @@ import { NotAcceptableError, NotFoundError } from 'routing-controllers';
/** /**
* Error to throw when no username or email is set * Error to throw when no username or email is set.
* We somehow need to identify you :)
*/ */
export class UsernameOrEmailNeededError extends NotFoundError { export class UsernameOrEmailNeededError extends NotFoundError {
@IsString() @IsString()
name = "UsernameOrEmailNeededError" name = "UsernameOrEmailNeededError"
@IsString() @IsString()
message = "no username or email is set!" message = "No username or email is set!"
} }
/** /**
@ -33,5 +34,5 @@ export class UserIdsNotMatchingError extends NotAcceptableError {
name = "UserIdsNotMatchingError" name = "UserIdsNotMatchingError"
@IsString() @IsString()
message = "The id's don't match!! \n And if you wanted to change a user's id: This isn't allowed" message = "The ids don't match!! \n And if you wanted to change a user's id: This isn't allowed!"
} }