2011-10-08 17:36:38 -04:00
|
|
|
class DashboardController < ApplicationController
|
2012-01-14 14:44:08 -05:00
|
|
|
respond_to :html
|
2011-12-08 15:17:53 -05:00
|
|
|
|
2011-10-11 16:00:00 -04:00
|
|
|
def index
|
|
|
|
@projects = current_user.projects.all
|
2012-02-28 15:59:36 -05:00
|
|
|
|
2012-03-01 13:40:32 -05:00
|
|
|
@active_projects = @projects.select(&:last_activity_date).sort_by(&:last_activity_date).reverse
|
2012-02-28 15:59:36 -05:00
|
|
|
|
2012-03-01 13:40:32 -05: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 15:59:36 -05:00
|
|
|
|
|
|
|
@user = current_user
|
2012-03-01 13:40:32 -05:00
|
|
|
@issues = current_user.assigned_issues.opened.order("created_at DESC").limit(5)
|
2012-02-28 15:59:36 -05:00
|
|
|
@issues = @issues.includes(:author, :project)
|
2012-02-29 15:38:24 -05:00
|
|
|
|
|
|
|
@events = Event.where(:project_id => @projects.map(&:id)).recent.limit(20)
|
2011-12-08 15:17:53 -05:00
|
|
|
end
|
|
|
|
|
2011-12-15 02:22:24 -05:00
|
|
|
# Get authored or assigned open merge requests
|
2011-12-08 15:17:53 -05:00
|
|
|
def merge_requests
|
|
|
|
@projects = current_user.projects.all
|
2012-03-15 19:31:46 -04:00
|
|
|
@merge_requests = current_user.cared_merge_requests.order("created_at DESC").limit(40)
|
2011-12-08 15:17:53 -05:00
|
|
|
end
|
|
|
|
|
2011-12-15 02:22:24 -05:00
|
|
|
# Get only assigned issues
|
2011-12-08 15:17:53 -05:00
|
|
|
def issues
|
|
|
|
@projects = current_user.projects.all
|
|
|
|
@user = current_user
|
|
|
|
@issues = current_user.assigned_issues.opened.order("created_at DESC").limit(40)
|
|
|
|
|
|
|
|
@issues = @issues.includes(:author, :project)
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.atom { render :layout => false }
|
|
|
|
end
|
2011-10-11 16:00:00 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|