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

38 lines
840 B
Ruby
Raw Normal View History

2015-04-30 17:06:18 +00: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 17:06:18 +00: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 05:24:05 +00:00
protected
2015-02-18 17:38:46 +00:00
def load_events
projects =
if params[:filter] == "starred"
current_user.viewable_starred_projects
else
current_user.authorized_projects
end
@events = Event.in_projects(projects)
2015-02-18 17:38:46 +00:00
@events = @event_filter.apply_filter(@events).with_associations
@events = @events.limit(20).offset(params[:offset] || 0)
end
2011-10-08 21:36:38 +00:00
end