mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-24 14:56:41 +00:00
13 lines
194 B
Ruby
13 lines
194 B
Ruby
class Blog < ActiveRecord::Base
|
|
attr_accessible :content, :title
|
|
|
|
validates :content, presence: true
|
|
|
|
def as_json(options)
|
|
{
|
|
title: title,
|
|
content: content
|
|
}
|
|
end
|
|
end
|