method
pass_transform_argument
v5.2.3 -
Show latest stable
- Class:
ActiveStorage::Variation
pass_transform_argument(command, method, argument)private
No documentation available.
# File activestorage/app/models/active_storage/variation.rb, line 78
def pass_transform_argument(command, method, argument)
if eligible_argument?(argument)
command.public_send(method, argument)
else
command.public_send(method)
end
end