Browse Source

Revert previous commit

dev
David Ludwig 4 years ago
parent
commit
6a895c5e7e
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      services/request/src/services/WebServer/requests/RegisterRequest.ts

+ 4
- 2
services/request/src/services/WebServer/requests/RegisterRequest.ts View File

@ -7,7 +7,8 @@ export interface IRegisterFormBody {
token: string,
name: string,
email: string,
password: string
password: string,
retypePassword: string
}
export class RegisterRequest extends Request
@ -20,7 +21,8 @@ export class RegisterRequest extends Request
token: constraints.register.token,
name: constraints.register.name,
email: constraints.register.email,
password: constraints.register.password
password: constraints.register.password,
retypePassword: constraints.register.retypePassword
},<any>{ fullMessages: false });
}
}

Loading…
Cancel
Save