gitlab-org--gitlab-foss/app/controllers/dashboard_controller.rb

38 lines
831 B
Ruby
Raw Normal View History

2015-04-30 13:06:18 -04:00
class DashboardController < Dashboard::ApplicationController
include IssuesAction
include MergeRequestsAction
before_action :event_filter, only: :activity
before_action :projects, only: [:issues, :merge_requests]
2015-04-30 13:06:18 -04:00
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
2012-11-21 00:24:05 -05:00
protected
2015-02-18 12:38:46 -05:00
def load_events
projects =
if params[:filter] == "starred"
current_user.starred_projects
else
current_user.authorized_projects
end
@events = Event.in_projects(projects)
2015-02-18 12:38:46 -05:00
@events = @event_filter.apply_filter(@events).with_associations
@events = @events.limit(20).offset(params[:offset] || 0)
end
2011-10-08 17:36:38 -04:00
end