Backport EE http status codes new file to CE

This commit is contained in:
Filipa Lacerda 2017-02-27 11:35:37 +00:00
parent c72c8e9a0e
commit 287a7757aa

View file

@ -0,0 +1,10 @@
/**
* exports HTTP status codes
*/
const statusCodes = {
NO_CONTENT: 204,
OK: 200,
};
module.exports = statusCodes;