3cebe9e780
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
41 lines
953 B
Ruby
41 lines
953 B
Ruby
class DashboardController < Dashboard::ApplicationController
|
|
include IssuesAction
|
|
include MergeRequestsAction
|
|
|
|
before_action :event_filter, only: :activity
|
|
before_action :projects, only: [:issues, :merge_requests]
|
|
|
|
respond_to :html
|
|
|
|
def activity
|
|
@last_push = current_user.recent_push
|
|
|
|
respond_to do |format|
|
|
format.html
|
|
|
|
format.json do
|
|
load_events
|
|
pager_json("events/_events", @events.count)
|
|
end
|
|
end
|
|
end
|
|
|
|
protected
|
|
|
|
def load_events
|
|
project_ids =
|
|
if params[:filter] == "starred"
|
|
current_user.starred_projects
|
|
else
|
|
current_user.authorized_projects
|
|
end.pluck(:id)
|
|
|
|
@events = Event.in_projects(project_ids)
|
|
@events = @event_filter.apply_filter(@events).with_associations
|
|
@events = @events.limit(20).offset(params[:offset] || 0)
|
|
end
|
|
|
|
def projects
|
|
@projects ||= current_user.authorized_projects.sorted_by_activity.non_archived
|
|
end
|
|
end
|