try to fix custom metacode icon path
This commit is contained in:
parent
f63a242256
commit
89424dcd7f
1 changed files with 3 additions and 1 deletions
|
@ -21,7 +21,9 @@ class Metacode < ActiveRecord::Base
|
||||||
#output json with asset_paths merged in
|
#output json with asset_paths merged in
|
||||||
def as_json(options)
|
def as_json(options)
|
||||||
json = super(options.merge!(methods: :asset_path_icon))
|
json = super(options.merge!(methods: :asset_path_icon))
|
||||||
json["icon"] = json["asset_path_icon"] unless json["icon"].start_with?('http')
|
unless json["icon"].start_with?('http')
|
||||||
|
json["icon"] = json["asset_path_icon"]
|
||||||
|
end
|
||||||
json.except("asset_path_icon")
|
json.except("asset_path_icon")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue