2011-10-08 23:36:38 +02:00
|
|
|
class DashboardController < ApplicationController
|
2012-01-14 20:44:08 +01:00
|
|
|
respond_to :html
|
2011-12-08 21:17:53 +01:00
|
|
|
|
2012-11-05 19:12:26 +01:00
|
|
|
before_filter :event_filter, only: :index
|
|
|
|
|
2011-10-11 22:00:00 +02:00
|
|
|
def index
|
2012-11-22 20:41:16 +01:00
|
|
|
@groups = Group.where(id: current_user.projects.pluck(:namespace_id))
|
2012-11-16 19:31:17 +01:00
|
|
|
@projects = current_user.projects_sorted_by_activity
|
2012-10-17 21:02:52 +02:00
|
|
|
@projects = @projects.page(params[:page]).per(30)
|
2012-10-02 18:37:53 +02:00
|
|
|
|
2012-11-05 19:12:26 +01:00
|
|
|
@events = Event.in_projects(current_user.project_ids)
|
|
|
|
@events = @event_filter.apply_filter(@events)
|
|
|
|
@events = @events.limit(20).offset(params[:offset] || 0)
|
|
|
|
|
2012-06-12 22:13:42 +02:00
|
|
|
@last_push = current_user.recent_push
|
2012-02-29 21:38:24 +01:00
|
|
|
|
2012-06-12 22:13:42 +02:00
|
|
|
respond_to do |format|
|
2012-10-02 19:42:15 +02:00
|
|
|
format.html
|
2012-07-21 09:23:05 +02:00
|
|
|
format.js
|
2012-08-11 00:07:50 +02:00
|
|
|
format.atom { render layout: false }
|
2012-06-12 22:13:42 +02:00
|
|
|
end
|
2011-12-08 21:17:53 +01:00
|
|
|
end
|
|
|
|
|
2011-12-15 08:22:24 +01:00
|
|
|
# Get authored or assigned open merge requests
|
2011-12-08 21:17:53 +01:00
|
|
|
def merge_requests
|
|
|
|
@projects = current_user.projects.all
|
2012-10-09 21:09:46 +02:00
|
|
|
@merge_requests = current_user.cared_merge_requests.recent.page(params[:page]).per(20)
|
2011-12-08 21:17:53 +01:00
|
|
|
end
|
|
|
|
|
2011-12-15 08:22:24 +01:00
|
|
|
# Get only assigned issues
|
2011-12-08 21:17:53 +01:00
|
|
|
def issues
|
|
|
|
@projects = current_user.projects.all
|
|
|
|
@user = current_user
|
2012-10-09 21:09:46 +02:00
|
|
|
@issues = current_user.assigned_issues.opened.recent.page(params[:page]).per(20)
|
2011-12-08 21:17:53 +01:00
|
|
|
@issues = @issues.includes(:author, :project)
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2012-08-11 00:07:50 +02:00
|
|
|
format.atom { render layout: false }
|
2011-12-08 21:17:53 +01:00
|
|
|
end
|
2011-10-11 22:00:00 +02:00
|
|
|
end
|
2012-11-05 19:12:26 +01:00
|
|
|
|
|
|
|
def event_filter
|
|
|
|
@event_filter ||= EventFilter.new(params[:event_filter])
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|