asset_path doesn't work in models

This commit is contained in:
Devin Howard 2015-10-23 23:09:14 +08:00 committed by Connor Turland
parent cef83e1f3d
commit b9ac614057
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ class Map < ActiveRecord::Base
:thumb => ['188x126#', :png]
#:full => ['940x630#', :png]
},
:default_url => asset_path('missing-map.png')
:default_url => ActionController::Base.helpers.asset_path('missing-map.png')
# Validate the attached image is image/jpg, image/png, etc
validates_attachment_content_type :screenshot, :content_type => /\Aimage\/.*\Z/

View file

@ -35,7 +35,7 @@ class User < ActiveRecord::Base
:ninetysix => ['96x96#', :png],
:onetwentyeight => ['128x128#', :png]
},
:default_url => asset_path('user.png')
:default_url => ActionController::Base.helpers.asset_path('user.png')
# Validate the attached image is image/jpg, image/png, etc
validates_attachment_content_type :image, :content_type => /\Aimage\/.*\Z/