debian-mirror-gitlab/app/controllers/dashboard/labels_controller.rb
2016-06-02 11:05:42 +05:30

9 lines
257 B
Ruby

class Dashboard::LabelsController < Dashboard::ApplicationController
def index
labels = Label.where(project_id: projects).select(:id, :title, :color).uniq(:title)
respond_to do |format|
format.json { render json: labels }
end
end
end