gitlab-org--gitlab-foss/lib/api/v3/labels.rb
2017-02-17 09:05:24 +01:00

19 lines
488 B
Ruby

module API
module V3
class Labels < Grape::API
before { authenticate! }
params do
requires :id, type: String, desc: 'The ID of a project'
end
resource :projects do
desc 'Get all labels of the project' do
success ::API::Entities::Label
end
get ':id/labels' do
present available_labels, with: ::API::Entities::Label, current_user: current_user, project: user_project
end
end
end
end
end