mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-28 03:06:28 +08:00
13 lines
304 B
Ruby
13 lines
304 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class TaskUserAssignmentSerializer < ActiveModel::Serializer
|
|
type :task_user_assignments
|
|
attributes :id
|
|
|
|
belongs_to :user, serializer: UserSerializer
|
|
belongs_to :user_role, serializer: UserRoleSerializer
|
|
end
|
|
end
|
|
end
|