2016-03-23 06:39:58 -04:00
|
|
|
class Dashboard::LabelsController < Dashboard::ApplicationController
|
|
|
|
def index
|
|
|
|
respond_to do |format|
|
2017-05-05 18:47:32 -04:00
|
|
|
format.json { render json: LabelSerializer.new.represent_appearance(labels) }
|
2016-03-23 06:39:58 -04:00
|
|
|
end
|
|
|
|
end
|
2017-07-07 08:54:49 -04:00
|
|
|
|
|
|
|
def labels
|
|
|
|
finder_params = { project_ids: projects.select(:id) }
|
|
|
|
labels = LabelsFinder.new(current_user, finder_params).execute
|
|
|
|
|
|
|
|
GlobalLabel.build_collection(labels)
|
|
|
|
end
|
2016-03-23 06:39:58 -04:00
|
|
|
end
|