2015-09-11 14:41:01 +05:30
|
|
|
class Dashboard::ProjectsController < Dashboard::ApplicationController
|
|
|
|
before_action :event_filter
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
def index
|
|
|
|
@projects = current_user.authorized_projects.sorted_by_activity.non_archived
|
|
|
|
@projects = @projects.includes(:namespace)
|
|
|
|
@last_push = current_user.recent_push
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.atom do
|
|
|
|
event_filter
|
|
|
|
load_events
|
|
|
|
render layout: false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def starred
|
|
|
|
@projects = current_user.starred_projects
|
|
|
|
@projects = @projects.includes(:namespace, :forked_from_project, :tags)
|
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
2015-10-24 18:46:33 +05:30
|
|
|
@last_push = current_user.recent_push
|
2015-04-26 12:48:37 +05:30
|
|
|
@groups = []
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
|
|
|
|
format.json do
|
|
|
|
load_events
|
|
|
|
pager_json("events/_events", @events.count)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_events
|
|
|
|
@events = Event.in_projects(@projects.pluck(:id))
|
|
|
|
@events = @event_filter.apply_filter(@events).with_associations
|
|
|
|
@events = @events.limit(20).offset(params[:offset] || 0)
|
|
|
|
end
|
|
|
|
end
|