responseCode.js 330 Bytes
Newer Older
chaiwat's avatar
chaiwat committed
1 2 3
module.exports = {
    SUCCESS: 200,
    SUCCESS_NO_CONTENT: 204,
chaiwat's avatar
chaiwat committed
4 5 6
    SUCCESS_NO_APPROVE: 205,
    SUCCESS_ACCEPTED: 202,

chaiwat's avatar
chaiwat committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20
  
  
    ERROR_BAD_REQUEST: 400,
    ERROR_UNAUTHORIZED: 401,
    ERROR_NOT_FOUND: 404,
  
    ERROR_API: 500,
  
    ERROR_DB_UNKNOWN: 1000,
    ERROR_DB_DUPLICATE: 1001,
    ERROR_DB_DOWN: 1100,
  
  }