2011-10-09 00:36:38 +03:00
|
|
|
class DashboardController < ApplicationController
|
2012-01-14 21:44:08 +02:00
|
|
|
respond_to :html
|
2011-12-08 22:17:53 +02:00
|
|
|
|
2011-10-11 23:00:00 +03:00
|
|
|
def index
|
2012-07-20 08:39:34 +03:00
|
|
|
@projects = current_user.projects_with_events.page(params[:page]).per(40)
|
2012-07-21 10:23:05 +03:00
|
|
|
@events = Event.recent_for_user(current_user).limit(20).offset(params[:offset] || 0)
|
2012-06-12 23:13:42 +03:00
|
|
|
@last_push = current_user.recent_push
|
2012-02-29 22:38:24 +02:00
|
|
|
|
2012-06-12 23:13:42 +03:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2012-07-21 10:23:05 +03:00
|
|
|
format.js
|
2012-08-10 18:07:50 -04:00
|
|
|
format.atom { render layout: false }
|
2012-06-12 23:13:42 +03:00
|
|
|
end
|
2011-12-08 22:17:53 +02:00
|
|
|
end
|
|
|
|
|
2011-12-15 09:22:24 +02:00
|
|
|
# Get authored or assigned open merge requests
|
2011-12-08 22:17:53 +02:00
|
|
|
def merge_requests
|
|
|
|
@projects = current_user.projects.all
|
2012-04-08 00:18:32 +03:00
|
|
|
@merge_requests = current_user.cared_merge_requests.order("created_at DESC").page(params[:page]).per(20)
|
2011-12-08 22:17:53 +02:00
|
|
|
end
|
|
|
|
|
2011-12-15 09:22:24 +02:00
|
|
|
# Get only assigned issues
|
2011-12-08 22:17:53 +02:00
|
|
|
def issues
|
|
|
|
@projects = current_user.projects.all
|
|
|
|
@user = current_user
|
2012-04-08 00:18:32 +03:00
|
|
|
@issues = current_user.assigned_issues.opened.order("created_at DESC").page(params[:page]).per(20)
|
2011-12-08 22:17:53 +02:00
|
|
|
@issues = @issues.includes(:author, :project)
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2012-08-10 18:07:50 -04:00
|
|
|
format.atom { render layout: false }
|
2011-12-08 22:17:53 +02:00
|
|
|
end
|
2011-10-11 23:00:00 +03:00
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|