ぼざクリ タグ広場 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.
 
 
 
 
 
 

12 lines
374 B

  1. class WikiPage < ApplicationRecord
  2. belongs_to :tag, optional: true
  3. belongs_to :created_user, class_name: 'User', foreign_key: 'created_user_id'
  4. belongs_to :updated_user, class_name: 'User', foreign_key: 'updated_user_id'
  5. validates :title, presence: true, length: { maximum: 255 }, uniqueness: true
  6. def gollum_path
  7. "wiki/#{ title.parameterize }.md"
  8. end
  9. end