5 lines
91 B
Ruby
5 lines
91 B
Ruby
class Article < ApplicationRecord
|
|
has_rich_text :text
|
|
validates_presence_of :title
|
|
end
|