summaryrefslogtreecommitdiff
path: root/lib/api/version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/version.rb')
-rw-r--r--lib/api/version.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/api/version.rb b/lib/api/version.rb
new file mode 100644
index 00000000000..9ba576bd828
--- /dev/null
+++ b/lib/api/version.rb
@@ -0,0 +1,12 @@
+module API
+ class Version < Grape::API
+ before { authenticate! }
+
+ desc 'Get the version information of the GitLab instance.' do
+ detail 'This feature was introduced in GitLab 8.13.'
+ end
+ get '/version' do
+ { version: Gitlab::VERSION, revision: Gitlab::REVISION }
+ end
+ end
+end