diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-19 12:00:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-19 12:00:05 +0200 |
commit | c2c93f8cd64704c715f5fb843e2b532779a1ca0f (patch) | |
tree | bf5fac17188d234a50e55effd685488733274714 /app/helpers | |
parent | 9fc082ea81932b2ee5c7d887f9c31d26d913df7c (diff) |
Fix deprecation warning for non-pipeline assets (#4267)
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/routing_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/routing_helper.rb b/app/helpers/routing_helper.rb index 9650ee286..8126176ba 100644 --- a/app/helpers/routing_helper.rb +++ b/app/helpers/routing_helper.rb @@ -11,7 +11,7 @@ module RoutingHelper end end - def full_asset_url(source) - Rails.configuration.x.use_s3 ? source : URI.join(root_url, ActionController::Base.helpers.asset_url(source)).to_s + def full_asset_url(source, options = {}) + Rails.configuration.x.use_s3 ? source : URI.join(root_url, ActionController::Base.helpers.asset_url(source, options)).to_s end end |