rswag/spec/dummy/app/models/blog.rb
2016-02-25 09:47:09 -08:00

11 lines
156 B
Ruby

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