diff options
author | Robert Speicher <robert@gitlab.com> | 2016-10-12 18:38:02 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2016-10-12 18:38:02 +0000 |
commit | 58e2b44afe535100508eb4d49d7e7df24e408383 (patch) | |
tree | 297acd474db338de3de6290543e8f14bbe2c4252 /lib/api/api.rb | |
parent | 5aa7b13c2ed61f22aa3be48b2ad5fe2ed6ea3a5e (diff) | |
parent | b998479c81512b7c9a2cff28e7aabff3c4be0424 (diff) | |
download | gitlab-ce-58e2b44afe535100508eb4d49d7e7df24e408383.tar.gz |
Merge branch 'api-version' into 'master'
API: Version information
## What does this MR do?
Adds a new endpoint to retrieve the version information.
## Why was this MR needed?
Clients can now use this information to enable/disable certain API features depending on the version.
## What are the relevant issue numbers?
Closes #22608, https://gitlab.com/gitlab-org/gitlab-ce/issues/23148
See merge request !6822
Diffstat (limited to 'lib/api/api.rb')
-rw-r--r-- | lib/api/api.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/api/api.rb b/lib/api/api.rb index c64d444842d..920d098bb24 100644 --- a/lib/api/api.rb +++ b/lib/api/api.rb @@ -72,6 +72,7 @@ module API mount ::API::Triggers mount ::API::Users mount ::API::Variables + mount ::API::Version route :any, '*path' do error!('404 Not Found', 404) |