This repository has been archived on 2025-11-04. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
qoverflow/server/config.json

36 lines
925 B
JSON

{
"askQuestion": 1,
"answerQuestion": 2,
"upvoteQuestion": 5,
"downvoteQuestion": 1,
"upvoteAnswer": 10,
"downvoteAnswer": 5,
"userDownvotes": 1,
"acceptAnswer": 15,
"mailExpires": 10000,
"userExpires": 100000,
"answerExpires": 60000,
"questionExpires": 60000,
"commentExpires": 60000,
"voteExpires": 60000,
"errorGeneric": {
"error": "Oops! Something went wrong."
},
"errorIncomplete": {
"error": "Your request is missing information."
},
"errorForbidden": {
"error": "You are not authorized to do that."
},
"errorFailed": {
"error": "Request failed. Please check form and try again."
},
"errorNotFound": {
"error": "That resource was not found. Please check the URI and try again."
},
"errorUnauthed": {
"error": "You are unauthenticated, please include your JWT."
}
}