Fixed #2388 -- login_required decorator now preserves docstring and name of decorated function. Thanks, derekgr@gmail.com
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3461 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
aaa3cc0ea3
commit
c7fa1fa56f
|
@ -13,6 +13,9 @@ def user_passes_test(test_func, login_url=LOGIN_URL):
|
|||
if test_func(request.user):
|
||||
return view_func(request, *args, **kwargs)
|
||||
return HttpResponseRedirect('%s?%s=%s' % (login_url, REDIRECT_FIELD_NAME, quote(request.get_full_path())))
|
||||
_checklogin.__doc__ = view_func.__doc__
|
||||
_checklogin.__dict__ = view_func.__dict__
|
||||
_checklogin.__name__ = view_func.__name__
|
||||
|
||||
return _checklogin
|
||||
return _dec
|
||||
|
|
Loading…
Reference in New Issue