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