Project

General

Profile

Actions

Maintenance #3050

closed

xmera Omnia - Collection #3085: Maintain several plugins to be compatible

(rm 5.1.7): Change project_query

Added by liaham 23 days ago. Updated 18 days ago.

Status:
Closed
Priority:
Normal
Assignee:
Target version:
Start date:
03/16/2025
Due date:
03/16/2025
% Done:

100%

Estimated time:
Compatible Redmine Version:
5.1.z

Description

diff --git a/app/models/project_query.rb b/app/models/project_query.rb
index c8d3effc1..5294fdb50 100644
--- a/app/models/project_query.rb
+++ b/app/models/project_query.rb
@@ -18,8 +18,6 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 class ProjectQuery < Query
-  attr_accessor :admin_projects
-
   self.queried_class = Project
   self.view_permission = :search_project
 
@@ -28,6 +26,13 @@ class ProjectQuery < Query
     errors.add(:project_id, :exclusion) if query.project_id.present?
   end
 
+  # Inheriting ProjectAdminQuery from ProjectQuery introduces the problem that
+  # ProjectQuery.visible also yields ProjectAdminQueries, as
+  # well. We fix that by adding a condition on the actual class name.
+  def self.visible(*)
+    super.where type: name
+  end
+
   self.available_columns = [
     QueryColumn.new(:name, :sortable => "#{Project.table_name}.name"),
     QueryColumn.new(:status, :sortable => "#{Project.table_name}.status"),
@@ -80,12 +85,6 @@ class ProjectQuery < Query
     add_custom_fields_filters(project_custom_fields)
   end
 
-  def build_from_params(params, defaults={})
-    query = super
-    query.admin_projects = params[:admin_projects]
-    query
-  end
-
   def available_columns
     return @available_columns if @available_columns
 
@@ -96,28 +95,7 @@ class ProjectQuery < Query
   end
 
   def available_display_types
-    if self.admin_projects
-      ['list']
-    else
-      ['board', 'list']
-    end
-  end
-
-  def display_type
-    if self.admin_projects
-      'list'
-    else
-      super
-    end
-  end
-
-  def project_statuses_values
-    values = super
-    if self.admin_projects
-      values << [l(:project_status_archived), Project::STATUS_ARCHIVED.to_s]
-      values << [l(:project_status_scheduled_for_deletion), Project::STATUS_SCHEDULED_FOR_DELETION.to_s]
-    end
-    values
+    ['board', 'list']
   end
 
   def default_columns_names
@@ -133,11 +111,7 @@ class ProjectQuery < Query
   end
 
   def base_scope
-    if self.admin_projects
-      Project.where(statement)
-    else
-      Project.visible.where(statement)
-    end
+    Project.visible.where(statement)
   end
 
   def results_scope(options={})
Actions #1

Updated by liaham 20 days ago

  • Project changed from Redmine to Redmine Project Types
  • Subject changed from Check project_query to (rm 5.1.7): Change project_query
  • Description updated (diff)
  • Assignee set to liaham
  • Target version changed from 5.1.7 to 4.6.1
Actions #2

Updated by liaham 20 days ago

  • Due date set to 03/16/2025
  • Status changed from New to Closed
  • Start date set to 03/16/2025
  • % Done changed from 0 to 100
Actions #3

Updated by liaham 18 days ago

  • Parent task set to #3085
Actions

Also available in: Atom PDF