gitlab-org--gitlab-foss/app/controllers/dashboard/projects_controller.rb

67 lines
1.7 KiB
Ruby
Raw Normal View History

2015-04-30 17:06:18 +00:00
class Dashboard::ProjectsController < Dashboard::ApplicationController
before_action :event_filter
2015-03-09 21:12:03 +00:00
def index
@projects = current_user.authorized_projects.sorted_by_activity.non_archived
@projects = @projects.sort(@sort = params[:sort])
@projects = @projects.includes(:namespace)
terms = params['filter_projects']
if terms.present?
@projects = @projects.search(terms)
end
2016-02-03 18:47:38 +00:00
@projects = @projects.page(params[:page]).per(PER_PAGE)
@last_push = current_user.recent_push
respond_to do |format|
format.html
format.atom do
event_filter
load_events
render layout: false
end
format.json do
render json: {
2016-02-03 23:21:14 +00:00
html: view_to_html_string("dashboard/projects/_projects", locals: { projects: @projects })
}
end
end
end
2015-03-09 21:12:03 +00:00
def starred
@projects = current_user.starred_projects
@projects = @projects.includes(:namespace, :forked_from_project, :tags)
@projects = @projects.sort(@sort = params[:sort])
2016-02-03 23:21:14 +00:00
terms = params['filter_projects']
if terms.present?
@projects = @projects.search(terms)
end
2016-02-03 18:47:38 +00:00
@projects = @projects.page(params[:page]).per(PER_PAGE)
@last_push = current_user.recent_push
2015-03-09 21:12:03 +00:00
@groups = []
respond_to do |format|
format.html
format.json do
2016-02-03 23:21:14 +00:00
render json: {
html: view_to_html_string("dashboard/projects/projects", locals: { projects: @projects })
}
2015-03-09 21:12:03 +00:00
end
end
end
private
def load_events
@events = Event.in_projects(@projects)
2015-03-09 21:12:03 +00:00
@events = @event_filter.apply_filter(@events).with_associations
@events = @events.limit(20).offset(params[:offset] || 0)
end
end