Fixed user confirmation

This commit is contained in:
Sven Heidemann 2022-10-25 08:00:49 +02:00
parent b9c793ebb7
commit 5cbd6ec00b

View File

@ -74,6 +74,11 @@ class AuthController:
await self._auth_service.add_auth_user_async(dto)
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')
async def login(self) -> Response:
dto: AuthUserDTO = JSONProcessor.process(AuthUserDTO, request.get_json(force=True, silent=True))