Actions
Maintenance #1946
closedxmera Omnia - Collection #1826: Maintenance tasks of several components
Maintenance #1739: Support Redmine 5.1.1
Check if admin controller changes will have impact on plugins
Start date:
Due date:
% Done:
100%
Estimated time:
(Total: 0.00 h)
Compatible Redmine Version:
Pull Request Link:
Description
Affected plugins:
- project:xmera-omnia-operations
- project:xmera-omnia-preconfig
- Redmine Project Types
diff --git a/app/controllers/admin_controller.rb b/app/controllers/admin_controller.rb
index 0b784871d..fb7b0de21 100644
--- a/app/controllers/admin_controller.rb
+++ b/app/controllers/admin_controller.rb
@@ -26,19 +26,23 @@ class AdminController < ApplicationController
before_action :require_admin
+ helper :queries
+ include QueriesHelper
+ helper :projects_queries
+ helper :projects
+
def index
@no_configuration_data = Redmine::DefaultData::Loader::no_data?
end
def projects
- @status = params[:status] || 1
-
- scope = Project.status(@status).sorted
- scope = scope.like(params[:name]) if params[:name].present?
+ retrieve_query(ProjectQuery, false, :defaults => @default_columns_names)
+ @query.admin_projects = 1
+ scope = @query.results_scope
- @project_count = scope.count
- @project_pages = Paginator.new @project_count, per_page_option, params['page']
- @projects = scope.limit(@project_pages.per_page).offset(@project_pages.offset).to_a
+ @entry_count = scope.count
+ @entry_pages = Paginator.new @entry_count, per_page_option, params['page']
+ @projects = scope.limit(@entry_pages.per_page).offset(@entry_pages.offset).to_a
render :action => "projects", :layout => false if request.xhr?
end
@@ -81,5 +85,6 @@ class AdminController < ApplicationController
[:text_convert_available, Redmine::Thumbnail.convert_available?],
[:text_gs_available, Redmine::Thumbnail.gs_available?]
]
+ @checklist << [:text_default_active_job_queue_changed, Rails.application.config.active_job.queue_adapter != :async] if Rails.env.production?
end
end
Actions