kissingcomputer/app/models/page.rb

11 lines
262 B
Ruby
Raw Normal View History

2026-01-10 16:17:07 +00:00
class Page < ApplicationRecord
belongs_to :member
has_rich_text :body
validates :title, presence: true,
length: { minimum: 3 }
validates :body, presence: true,
length: { minimum: 5 }
end