mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-22 22:06:43 +00:00
18 lines
305 B
Ruby
18 lines
305 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Blog < ActiveRecord::Base
|
|
validates :content, presence: true
|
|
|
|
alias_attribute :headline, :title
|
|
alias_attribute :text, :content
|
|
|
|
def as_json(_options)
|
|
{
|
|
id: id,
|
|
title: title,
|
|
content: content,
|
|
thumbnail: thumbnail
|
|
}
|
|
end
|
|
end
|