debian-mirror-gitlab/lib/api/entities/metadata.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
301 B
Ruby
Raw Normal View History

2022-11-25 23:54:43 +05:30
# frozen_string_literal: true
module API
module Entities
class Metadata < Grape::Entity
expose :version
expose :revision
expose :kas do
expose :enabled, documentation: { type: 'boolean' }
expose :externalUrl
expose :version
end
end
end
end