mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 15:13:21 +08:00
12 lines
261 B
Ruby
12 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class UserMyModuleSerializer < ActiveModel::Serializer
|
|
type :user_tasks
|
|
attributes :id, :user_id, :my_module_id
|
|
|
|
belongs_to :my_module, serializer: MyModuleSerializer
|
|
end
|
|
end
|
|
end
|