2015-04-30 13:06:18 -04:00
|
|
|
class Dashboard::MilestonesController < Dashboard::ApplicationController
|
2015-11-13 13:20:48 -05:00
|
|
|
include GlobalMilestones
|
|
|
|
|
|
|
|
before_action :projects
|
|
|
|
before_action :milestones, only: [:index]
|
|
|
|
before_action :milestone, only: [:show]
|
2015-03-03 10:19:37 -05:00
|
|
|
|
|
|
|
def index
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2015-11-13 13:20:48 -05:00
|
|
|
def projects
|
|
|
|
@projects ||= current_user.authorized_projects.sorted_by_activity.non_archived
|
2015-03-03 10:19:37 -05:00
|
|
|
end
|
|
|
|
end
|