Project

General

Profile

Actions

Maintenance #1946

closed

xmera 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

Added by liaham about 1 year ago. Updated about 1 year ago.

Status:
Closed
Priority:
Normal
Assignee:
Target version:
-
Start date:
Due date:
% Done:

100%

Estimated time:
(Total: 0.00 h)
Compatible Redmine Version:

Description

Affected plugins:

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


Subtasks 2 (0 open2 closed)

Redmine Project Types - Maintenance #1947: Support new project query system for project typesClosedliaham

Actions
Redmine Project Types Relations - Maintenance #1977: Support new project query system for project types relationsClosedliaham

Actions
Actions #1

Updated by liaham about 1 year ago

  • Subtask #1947 added
Actions #2

Updated by liaham about 1 year ago

  • Status changed from New to In Progress
  • Assignee set to liaham
Actions #3

Updated by liaham about 1 year ago

Modified Redmine Project Types accordingly.

Actions #4

Updated by liaham about 1 year ago

  • Subtask #1977 added
Actions #5

Updated by liaham about 1 year ago

  • Status changed from In Progress to Closed
Actions

Also available in: Atom PDF