mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 12:46:07 +10:00
19 lines
349 B
Ruby
19 lines
349 B
Ruby
module API
|
|
class LicenseInfo < Grape::API
|
|
before { authenticated_as_admin! }
|
|
|
|
resource :license do
|
|
|
|
# Get information on the currently active license
|
|
#
|
|
# Example request:
|
|
# GET /license
|
|
get do
|
|
@license = License.current
|
|
|
|
present @license, with: Entities::License
|
|
end
|
|
end
|
|
end
|
|
end
|