зеркало из https://github.com/mozilla/mozillians.git
@require_post requires post
This commit is contained in:
Родитель
fd0bca7997
Коммит
effd10c952
|
@ -0,0 +1,10 @@
|
|||
from django import http
|
||||
|
||||
|
||||
def require_post(f):
|
||||
def wrapper(request, *args, **kw):
|
||||
if request.method == 'POST':
|
||||
return f(request, *args, **kw)
|
||||
else:
|
||||
return http.HttpResponseNotAllowed(['POST'])
|
||||
return wrapper
|
Загрузка…
Ссылка в новой задаче