Fixes issue on dashboard issues

They would try to load JSON from a project even though it isn't a single project
This commit is contained in:
Phil Hughes
2016-03-16 19:14:31 +00:00
parent 645b7a0a33
commit d847db79cb
7 changed files with 92 additions and 67 deletions

View File

@ -20,6 +20,24 @@ class DashboardController < Dashboard::ApplicationController
end
end
def labels
respond_to do |format|
format.json do
projects
render json: view_context.projects_labels_options
end
end
end
def milestones
respond_to do |format|
format.json do
projects
render json: view_context.projects_milestones_options
end
end
end
protected
def load_events