|
1
|
class Page < ActiveRecord::Base |
|
2
|
validates_length_of :page_slug, presence: true, allow_blank: false |
|
3
|
validates_length_of :page_content, presence: true, allow_blank: false |
|
4
|
|
|
5
|
has_many :comments, as: :commentable |
|
6
|
|
|
7
|
enum category: %i[ |
|
8
|
about |
|
9
|
what_is_this |
|
10
|
] |
|
11
|
end |