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