Skip to content

Instantly share code, notes, and snippets.

@octaflop
Created July 19, 2018 17:16
Show Gist options
  • Save octaflop/931a883bdd1c39f70b7e266d5d1bdf04 to your computer and use it in GitHub Desktop.
Save octaflop/931a883bdd1c39f70b7e266d5d1bdf04 to your computer and use it in GitHub Desktop.
def active_user_required(view_func):
@wraps(view_func)
def inner(request, *args, **kwargs):
if request.user.is_active:
return view_func(request, *args, **kwargs)
raise Http404()
return inner
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment