LoopsSessionCredentialsPlugin: + logout method: return None for cascading logout
This commit is contained in:
parent
350a600ffc
commit
d64dee25f6
1 changed files with 4 additions and 0 deletions
|
@ -36,6 +36,10 @@ class LoopsSessionCredentialsPlugin(SessionCredentialsPlugin):
|
|||
request.response.redirect(url)
|
||||
return True
|
||||
|
||||
def logout(self, request):
|
||||
super(LoopsSessionCredentialsPlugin, self).logout(request)
|
||||
return None # allow logout by other plugins or utilities
|
||||
|
||||
|
||||
class LoginLogout(BaseLoginLogout):
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue