consts/index.js

20 lines
392 B
JavaScript
Raw Normal View History

2020-03-04 13:49:20 +01:00
/*
* Copyright (C) Sapphirecode - All Rights Reserved
* Created by Timo Hocker <timo@scode.ovh>, January 2020
*/
/* eslint-disable no-magic-numbers */
'use strict';
module.exports = {
2020-03-06 17:20:23 +01:00
http: {
2020-03-04 13:49:20 +01:00
status_ok: 200,
status_ok_no_content: 204,
status_bad_request: 400,
status_unauthorized: 401,
status_forbidden: 403,
status_not_found: 404
}
};