mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
10 lines
195 B
Ruby
10 lines
195 B
Ruby
class Post < ApplicationRecord
|
|
belongs_to :board
|
|
belongs_to :user
|
|
belongs_to :post_status, optional: true
|
|
|
|
validates :title, presence: true, length: { in: 4..64 }
|
|
|
|
paginates_per 15
|
|
end
|