986695e136
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
19 lines
370 B
Ruby
19 lines
370 B
Ruby
class Dashboard::MilestonesController < Dashboard::ApplicationController
|
|
include GlobalMilestones
|
|
|
|
before_action :projects
|
|
before_action :milestones, only: [:index]
|
|
before_action :milestone, only: [:show]
|
|
|
|
def index
|
|
end
|
|
|
|
def show
|
|
end
|
|
|
|
private
|
|
|
|
def projects
|
|
@projects ||= current_user.authorized_projects.sorted_by_activity.non_archived
|
|
end
|
|
end
|