diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-02-29 20:06:39 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-02-29 20:06:39 +0100 |
commit | 23d08c6749eb142b24f22045f643d0591af579ff (patch) | |
tree | b0a9a211e03e77be014ce64659e7674b7419b213 /app/helpers | |
parent | 0e8f59c16fcb21301c736ecbc4424cb4c5388c42 (diff) |
Changing the use of config constants to the Rails configuration object
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/application_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 5d696316d..e683d9f51 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1,6 +1,6 @@ module ApplicationHelper def unique_tag(date, id, type) - "tag:#{LOCAL_DOMAIN},#{date.strftime('%Y-%m-%d')}:objectId=#{id}:objectType=#{type}" + "tag:#{Rails.configuration.x.local_domain},#{date.strftime('%Y-%m-%d')}:objectId=#{id}:objectType=#{type}" end def unique_tag_to_local_id(tag, expected_type) @@ -9,6 +9,6 @@ module ApplicationHelper end def local_id?(id) - id.start_with?("tag:#{LOCAL_DOMAIN}") + id.start_with?("tag:#{Rails.configuration.x.local_domain}") end end |