ぼざクリタグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
271 B

  1. class WikiAsset < ApplicationRecord
  2. belongs_to :wiki_page
  3. belongs_to :created_by_user, class_name: 'User'
  4. has_one_attached :file
  5. validates :file, presence: true
  6. def url
  7. Rails.application.routes.url_helpers.rails_blob_url(file, only_path: true)
  8. end
  9. end