2011-10-08 23:36:38 +02:00
|
|
|
class DashboardController < ApplicationController
|
2011-12-08 21:17:53 +01:00
|
|
|
respond_to :js, :html
|
|
|
|
|
2011-10-11 22:00:00 +02:00
|
|
|
def index
|
|
|
|
@projects = current_user.projects.all
|
2012-01-11 08:35:21 +01:00
|
|
|
@active_projects = @projects.select(&:repo_exists?).select(&:last_activity_date_cached).sort_by(&:last_activity_date_cached).reverse
|
2011-12-08 21:17:53 +01:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2011-12-20 07:49:14 +01:00
|
|
|
format.js { no_cache_headers }
|
2011-12-08 21:17:53 +01:00
|
|
|
end
|
|
|
|
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
|
2011-12-15 08:22:24 +01:00
|
|
|
@merge_requests = MergeRequest.where("author_id = :id or assignee_id = :id", :id => current_user.id).opened.order("created_at DESC").limit(40)
|
2011-12-08 21:17:53 +01:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2011-12-20 07:49:14 +01:00
|
|
|
format.js { no_cache_headers }
|
2011-12-08 21:17:53 +01:00
|
|
|
end
|
|
|
|
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
|
|
|
|
@issues = current_user.assigned_issues.opened.order("created_at DESC").limit(40)
|
|
|
|
|
|
|
|
@issues = @issues.includes(:author, :project)
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2011-12-20 07:49:14 +01:00
|
|
|
format.js { no_cache_headers }
|
2011-12-08 21:17:53 +01:00
|
|
|
format.atom { render :layout => false }
|
|
|
|
end
|
2011-10-11 22:00:00 +02:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|