2020-03-04 13:49:20 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) Sapphirecode - All Rights Reserved
|
2020-03-25 17:00:13 +01:00
|
|
|
* This file is part of Consts which is released under MIT.
|
|
|
|
* See file 'LICENSE' for full license details.
|
|
|
|
* Created by Timo Hocker <timo@scode.ovh>, March 2020
|
2020-03-04 13:49:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
}
|
|
|
|
};
|