9 lines
267 B
Ruby
9 lines
267 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::CollectionSerializer < ActiveModel::Serializer
|
|
attributes :uri, :name, :description, :local, :sensitive, :discoverable,
|
|
:created_at, :updated_at
|
|
|
|
belongs_to :account, serializer: REST::AccountSerializer
|
|
end
|