gitlab-org--gitlab-foss/lib/api/version.rb

31 lines
702 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-12 11:32:48 +00:00
module API
class Version < Grape::API
helpers ::API::Helpers::GraphqlHelpers
2016-10-12 11:32:48 +00:00
before { authenticate! }
METADATA_QUERY = <<~EOF
{
metadata {
version
revision
}
}
EOF
2016-10-12 11:32:48 +00:00
desc 'Get the version information of the GitLab instance.' do
detail 'This feature was introduced in GitLab 8.13.'
end
get '/version' do
conditionally_graphql!(
query: METADATA_QUERY,
context: { current_user: current_user },
transform: ->(result) { result.dig('data', 'metadata') },
fallback: -> { { version: Gitlab::VERSION, revision: Gitlab.revision } }
)
2016-10-12 11:32:48 +00:00
end
end
end