Skip to content

Instantly share code, notes, and snippets.

@lamenezes
Created December 8, 2015 18:30
Show Gist options
  • Save lamenezes/bf5d5257a74ab2ca46da to your computer and use it in GitHub Desktop.
Save lamenezes/bf5d5257a74ab2ca46da to your computer and use it in GitHub Desktop.
from django.views.generic import RedirectView
from django.contrib.auth import logout
class LogoutView(RedirectView):
redirect_url = '/'
def get(self, request, *args, **kwargs):
logout(request)
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