2016-03-23 06:39:58 -04:00
|
|
|
class Dashboard::LabelsController < Dashboard::ApplicationController
|
|
|
|
def index
|
|
|
|
respond_to do |format|
|
2016-09-20 10:55:31 -04:00
|
|
|
format.json { render json: LabelsFinder.new(current_user).execute }
|
2016-03-23 06:39:58 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|