rswag/test-app/app/models/blog.rb
2017-07-04 09:45:33 +04:30

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