Fixed user confirmation
This commit is contained in:
parent
b9c793ebb7
commit
5cbd6ec00b
@ -74,6 +74,11 @@ class AuthController:
|
|||||||
await self._auth_service.add_auth_user_async(dto)
|
await self._auth_service.add_auth_user_async(dto)
|
||||||
return '', 200
|
return '', 200
|
||||||
|
|
||||||
|
@Route.post(f'{BasePath}/register/<id>')
|
||||||
|
async def register_id(self, id: str):
|
||||||
|
result = await self._auth_service.confirm_email_async(id)
|
||||||
|
return jsonify(result)
|
||||||
|
|
||||||
@Route.post(f'{BasePath}/login')
|
@Route.post(f'{BasePath}/login')
|
||||||
async def login(self) -> Response:
|
async def login(self) -> Response:
|
||||||
dto: AuthUserDTO = JSONProcessor.process(AuthUserDTO, request.get_json(force=True, silent=True))
|
dto: AuthUserDTO = JSONProcessor.process(AuthUserDTO, request.get_json(force=True, silent=True))
|
||||||
|
Loading…
Reference in New Issue
Block a user