woot fix metacodes
This commit is contained in:
parent
60898fadb2
commit
bdb5623a02
1 changed files with 11 additions and 0 deletions
|
@ -13,4 +13,15 @@ class Metacode < ActiveRecord::Base
|
||||||
return true if self.metacode_sets.include? metacode_set
|
return true if self.metacode_sets.include? metacode_set
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def asset_path_icon
|
||||||
|
ActionController::Base.helpers.asset_path icon
|
||||||
|
end
|
||||||
|
|
||||||
|
#output json with asset_paths merged in
|
||||||
|
def as_json(options)
|
||||||
|
json = super(options.merge!(methods: :asset_path_icon))
|
||||||
|
json["icon"] = json["asset_path_icon"]
|
||||||
|
json.except("asset_path_icon")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue