Fixed user confirmation
This commit is contained in:
		@@ -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))
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user