7d4da81272
* install rubocop * 1961 automatic rubocop fixes * update rubocop.yml to ignore half of the remaining cops * rubocop lint warnings * random other warnings fixed
14 lines
424 B
Ruby
14 lines
424 B
Ruby
class NewSynapseSerializer < ActiveModel::Serializer
|
|
embed :ids, include: true
|
|
attributes :id,
|
|
:desc,
|
|
:category,
|
|
:weight,
|
|
:permission,
|
|
:created_at,
|
|
:updated_at
|
|
|
|
has_one :topic1, root: :topics, serializer: NewTopicSerializer
|
|
has_one :topic2, root: :topics, serializer: NewTopicSerializer
|
|
has_one :user, serializer: NewUserSerializer
|
|
end
|