Remove asset_hosts initializer
It just contains one constant, used in one place. Inlined and deleted!
This commit is contained in:
parent
6a4f2b91c1
commit
b7f4c5b6ac
2 changed files with 3 additions and 6 deletions
|
@ -45,11 +45,11 @@ class SwfAsset < ApplicationRecord
|
||||||
end
|
end
|
||||||
|
|
||||||
def image_url(size=IMAGE_SIZES[:large])
|
def image_url(size=IMAGE_SIZES[:large])
|
||||||
host = ASSET_HOSTS[:swf_asset_images]
|
|
||||||
size_key = size.join('x')
|
size_key = size.join('x')
|
||||||
|
|
||||||
image_dir = "#{self['type']}/#{partition_path}#{self.remote_id}"
|
image_dir = "#{self['type']}/#{partition_path}#{self.remote_id}"
|
||||||
"https://#{host}/#{image_dir}/#{size_key}.png?#{image_version}"
|
|
||||||
|
"https://impress-asset-images.openneo.net/#{image_dir}/#{size_key}.png?" +
|
||||||
|
"#{image_version}"
|
||||||
end
|
end
|
||||||
|
|
||||||
def images
|
def images
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
ASSET_HOSTS = {
|
|
||||||
:swf_asset_images => 'impress-asset-images.openneo.net'
|
|
||||||
}
|
|
Loading…
Reference in a new issue