gitlab-org--gitlab-foss/app/controllers/dashboard/labels_controller.rb

8 lines
200 B
Ruby
Raw Normal View History

class Dashboard::LabelsController < Dashboard::ApplicationController
def index
respond_to do |format|
format.json { render json: LabelsFinder.new(current_user).execute }
end
end
end