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
|
|
|
|
2011-10-11 22:00:00 +02:00
|
|
|
def index
|
|
|
|
@projects = current_user.projects.all
|
2012-02-28 21:59:36 +01:00
|
|
|
|
2012-03-01 19:40:32 +01:00
|
|
|
@active_projects = @projects.select(&:last_activity_date).sort_by(&:last_activity_date).reverse
|
2012-02-28 21:59:36 +01:00
|
|
|
|
2012-03-01 19:40:32 +01:00
|
|
|
@merge_requests = MergeRequest.where("author_id = :id or assignee_id = :id", :id => current_user.id).opened.order("created_at DESC").limit(5)
|
2012-02-28 21:59:36 +01:00
|
|
|
|
|
|
|
@user = current_user
|
2012-03-01 19:40:32 +01:00
|
|
|
@issues = current_user.assigned_issues.opened.order("created_at DESC").limit(5)
|
2012-02-28 21:59:36 +01:00
|
|
|
@issues = @issues.includes(:author, :project)
|
2012-02-29 21:38:24 +01:00
|
|
|
|
|
|
|
@events = Event.where(:project_id => @projects.map(&:id)).recent.limit(20)
|
2012-03-22 21:28:02 +01:00
|
|
|
@last_push = Event.where(:project_id => @projects.map(&:id)).recent.code_push.limit(1).first
|
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-04-07 23:18:32 +02:00
|
|
|
@merge_requests = current_user.cared_merge_requests.order("created_at DESC").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-04-07 23:18:32 +02:00
|
|
|
@issues = current_user.assigned_issues.opened.order("created_at DESC").page(params[:page]).per(20)
|
2011-12-08 21:17:53 +01:00
|
|
|
@issues = @issues.includes(:author, :project)
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.atom { render :layout => false }
|
|
|
|
end
|
2011-10-11 22:00:00 +02:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|