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