blob: f5d3dabb456ffc9b2efe222b1345a0275c09bc93 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
module ActionController
module ParameterEncoding
extend ActiveSupport::Concern
module ClassMethods
def inherited(klass)
super
klass.setup_param_encode
end
def setup_param_encode
@_parameter_encodings = {}
end
def encoding_for_param(action, param)
if @_parameter_encodings[action.to_s] && @_parameter_encodings[action.to_s][param.to_s]
@_parameter_encodings[action.to_s][param.to_s]
else
::Encoding::UTF_8
end
end
def parameter_encoding(action, param_name, encoding)
@_parameter_encodings[action.to_s] ||= {}
@_parameter_encodings[action.to_s][param_name.to_s] = encoding
end
end
end
end
|