fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Basic buttons fixed.
[redakcja.git]
/
apps
/
api
/
response.py
diff --git
a/apps/api/response.py
b/apps/api/response.py
index
c140163
..
a094f9c
100644
(file)
--- a/
apps/api/response.py
+++ b/
apps/api/response.py
@@
-98,9
+98,12
@@
class EntityConflict(ResponseObject):
#
# Server side errors
#
#
# Server side errors
#
-class
NotImplemented
(ResponseObject):
+class
InternalError
(ResponseObject):
def __init__(self, **kwargs):
def __init__(self, **kwargs):
- ResponseObject.__init__(self, 50
1, **kwargs)
+ ResponseObject.__init__(self, 50
0, **kwargs)
+class NotImplemented(ResponseObject):
+ def __init__(self, **kwargs):
+ ResponseObject.__init__(self, 501, **kwargs)
\ No newline at end of file