[#3477] Make sanitized_column a class method
This commit is contained in:
parent
7241e43a7c
commit
f34e65c207
1 changed files with 3 additions and 3 deletions
|
@ -94,7 +94,7 @@ class ProcedurePresentation < ApplicationRecord
|
|||
.pluck(:id)
|
||||
when 'self', 'user', 'individual', 'etablissement'
|
||||
return (table == 'self' ? dossiers : dossiers.includes(table))
|
||||
.order("#{sanitized_column(table, column)} #{order}")
|
||||
.order("#{self.class.sanitized_column(table, column)} #{order}")
|
||||
.pluck(:id)
|
||||
end
|
||||
end
|
||||
|
@ -103,7 +103,7 @@ class ProcedurePresentation < ApplicationRecord
|
|||
dossiers.each { |dossier| assert_matching_procedure(dossier) }
|
||||
filters[statut].group_by { |filter| filter.slice('table', 'column') } .map do |field, filters|
|
||||
table, column = field.values_at('table', 'column')
|
||||
table_column = sanitized_column(table, column)
|
||||
table_column = self.class.sanitized_column(table, column)
|
||||
values = filters.pluck('value')
|
||||
case table
|
||||
when 'self'
|
||||
|
@ -268,7 +268,7 @@ class ProcedurePresentation < ApplicationRecord
|
|||
@column_whitelist[table] || []
|
||||
end
|
||||
|
||||
def sanitized_column(table, column)
|
||||
def self.sanitized_column(table, column)
|
||||
[(table == 'self' ? 'dossier' : table).pluralize, column]
|
||||
.map { |name| ActiveRecord::Base.connection.quote_column_name(name) }
|
||||
.join('.')
|
||||
|
|
Loading…
Reference in a new issue