Skip to content

Instantly share code, notes, and snippets.

@manjurulhoque
Created March 30, 2019 14:51
Show Gist options
  • Save manjurulhoque/70dbedafae864e2a5059e6130c355eb0 to your computer and use it in GitHub Desktop.
Save manjurulhoque/70dbedafae864e2a5059e6130c355eb0 to your computer and use it in GitHub Desktop.
class LogoutView(RedirectView):
"""
Provides users the ability to logout
"""
url = '/login'
def get(self, request, *args, **kwargs):
auth.logout(request)
messages.success(request, 'You are now logged out')
return super(LogoutView, self).get(request, *args, **kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment