kissingcomputer/app/models/page.rb
2026-01-10 16:17:07 +00:00

10 lines
262 B
Ruby

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