8 lines
261 B
Ruby
8 lines
261 B
Ruby
class Mode < ApplicationRecord
|
|
belongs_to :user
|
|
has_one_attached :image
|
|
|
|
def image_url
|
|
image.attached? ? Rails.application.routes.url_helpers.rails_blob_path(image, only_path: true) : ActionController::Base.helpers.asset_path("unknown.jpg")
|
|
end
|
|
end
|