mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
10 lines
257 B
Ruby
10 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
|