rswag/spec/dummy/app/models/blog.rb
2016-04-06 09:19:41 -07:00

14 lines
208 B
Ruby

class Blog < ActiveRecord::Base
attr_accessible :content, :title
validates :content, presence: true
def as_json(options)
{
id: id,
title: title,
content: content
}
end
end