Skip to content

Commit

Permalink
add new error code
Browse files Browse the repository at this point in the history
  • Loading branch information
pbiering committed Feb 11, 2025
1 parent b011fa4 commit 77f69f2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions radicale/httputils.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@
DIRECTORY_LISTING: types.WSGIResponse = (
client.FORBIDDEN, (("Content-Type", "text/plain"),),
"Directory listings are not supported.")
INSUFFICIENT_STORAGE: types.WSGIResponse = (
client.INSUFFICIENT_STORAGE, (("Content-Type", "text/plain"),),
"Insufficient Storage. Please contact the administrator.")
INTERNAL_SERVER_ERROR: types.WSGIResponse = (
client.INTERNAL_SERVER_ERROR, (("Content-Type", "text/plain"),),
"A server error occurred. Please contact the administrator.")
Expand Down

0 comments on commit 77f69f2

Please sign in to comment.