summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2018-06-11 17:53:07 +0000
committerClement Ho <clemmakesapps@gmail.com>2018-06-11 17:53:07 +0000
commita8da4f3fa810ed0931ee8f54ac8123fb2f484830 (patch)
tree508f1481bad28fdc114b3030478c2d2b93ca97cb
parent421957cf8c9d5347a20d7a88f07a049622a631e0 (diff)
parent45254cd2ff46016eea1f048fb484acb7ddea3743 (diff)
downloadgitlab-ce-a8da4f3fa810ed0931ee8f54ac8123fb2f484830.tar.gz
Merge branch 'unify-http_status.js' into 'master'
Add NOT_FOUND: 404 to http_status.js from EE See merge request gitlab-org/gitlab-ce!19659
-rw-r--r--app/assets/javascripts/lib/utils/http_status.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/assets/javascripts/lib/utils/http_status.js b/app/assets/javascripts/lib/utils/http_status.js
index bb151929431..229d53b18b0 100644
--- a/app/assets/javascripts/lib/utils/http_status.js
+++ b/app/assets/javascripts/lib/utils/http_status.js
@@ -8,4 +8,5 @@ export default {
OK: 200,
MULTIPLE_CHOICES: 300,
BAD_REQUEST: 400,
+ NOT_FOUND: 404,
};