Welcome to mirror list, hosted at ThFree Co, Russian Federation.

http_status.js « utils « lib « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 625e53ee9def46f6fe76f0c88dc46adbab21e825 (plain)
1
2
3
4
5
6
7
8
9
/**
 * exports HTTP status codes
 */

export default {
  ABORTED: 0,
  NO_CONTENT: 204,
  OK: 200,
};