73322a0e55
Enables frozen string for the following: * app/controllers/*.rb * app/controllers/admin/**/*.rb * app/controllers/boards/**/*.rb * app/controllers/ci/**/*.rb * app/controllers/concerns/**/*.rb Partially addresses #47424.
9 lines
169 B
Ruby
9 lines
169 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ParamsBackwardCompatibility
|
|
private
|
|
|
|
def set_non_archived_param
|
|
params[:non_archived] = params[:archived].blank?
|
|
end
|
|
end
|