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