app.kluk.fr/app/models/mode.rb
2026-04-06 10:56:50 +02:00

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