fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Widok do edycji dokumentów w aplikacji wiki.
[redakcja.git]
/
apps
/
api
/
response.py
diff --git
a/apps/api/response.py
b/apps/api/response.py
index
0d38a3a
..
4675015
100644
(file)
--- a/
apps/api/response.py
+++ b/
apps/api/response.py
@@
-49,6
+49,7
@@
class RequestAccepted(ResponseObject):
def django_response(self, ticket_status, ticket_uri):
return ResponseObject.django_response(self, {
def django_response(self, ticket_status, ticket_uri):
return ResponseObject.django_response(self, {
+ 'result': 'accepted',
'status': ticket_status,
'refer_to': ticket_uri })
'status': ticket_status,
'refer_to': ticket_uri })
@@
-73,10
+74,7
@@
class AccessDenied(ResponseObject):
def __init__(self, **kwargs):
ResponseObject.__init__(self, 403, **kwargs)
def __init__(self, **kwargs):
ResponseObject.__init__(self, 403, **kwargs)
-
- def django_response(self, reason):
- return ResponseObject.django_response(self, \
- body={'reason': reason})
+
class EntityNotFound(ResponseObject):
class EntityNotFound(ResponseObject):