bugfix
This commit is contained in:
parent
49e8462029
commit
fbdab31bc2
@ -48,8 +48,9 @@ class AuthAPI(AppLogger):
|
|||||||
# setup aiohttp_auth.auth middleware in aiohttp fashion
|
# setup aiohttp_auth.auth middleware in aiohttp fashion
|
||||||
# print('policy = ', policy)
|
# print('policy = ', policy)
|
||||||
auth.setup(app, policy)
|
auth.setup(app, policy)
|
||||||
|
print('add auth middleware ....................')
|
||||||
app.middlewares.append(self.checkAuth)
|
app.middlewares.append(self.checkAuth)
|
||||||
app.router.add_route('GET', '/logout', self.logout)
|
# app.router.add_route('GET', '/logout', self.logout)
|
||||||
|
|
||||||
async def logout(self,request):
|
async def logout(self,request):
|
||||||
await auth.forget(request)
|
await auth.forget(request)
|
||||||
|
Loading…
Reference in New Issue
Block a user