mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
10 lines
252 B
Ruby
10 lines
252 B
Ruby
class Dashboard::LabelsController < Dashboard::ApplicationController
|
|
def index
|
|
labels = Label.where(project_id: projects).select(:title, :color).uniq(:title)
|
|
|
|
respond_to do |format|
|
|
format.json { render json: labels }
|
|
end
|
|
end
|
|
end
|