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