rswag/test-app/app/models/blog.rb
2017-05-11 05:06:46 +04:30

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