2015-04-30 13:06:18 -04:00
|
|
|
class DashboardController < Dashboard::ApplicationController
|
2015-11-17 05:03:18 -05:00
|
|
|
include IssuesAction
|
|
|
|
include MergeRequestsAction
|
|
|
|
|
2015-08-25 08:13:04 -04:00
|
|
|
before_action :event_filter, only: :activity
|
2016-03-22 14:19:53 -04:00
|
|
|
before_action :projects, only: [:issues, :merge_requests]
|
2015-05-16 09:04:45 -04:00
|
|
|
|
2015-04-30 13:06:18 -04:00
|
|
|
respond_to :html
|
2012-11-05 13:12:26 -05:00
|
|
|
|
2015-08-25 08:13:04 -04:00
|
|
|
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
|
2016-01-25 10:56:23 -05:00
|
|
|
projects =
|
2015-09-02 13:17:04 -04:00
|
|
|
if params[:filter] == "starred"
|
2016-05-10 13:03:55 -04:00
|
|
|
current_user.viewable_starred_projects
|
2015-09-02 13:17:04 -04:00
|
|
|
else
|
|
|
|
current_user.authorized_projects
|
2016-01-25 10:56:23 -05:00
|
|
|
end
|
2015-09-02 13:17:04 -04:00
|
|
|
|
2016-01-25 10:56:23 -05:00
|
|
|
@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
|