mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 05:05:55 +08:00
12 lines
322 B
Ruby
12 lines
322 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class ActivitySerializer < ActiveModel::Serializer
|
|
type :activities
|
|
attributes :id, :my_module_id, :user_id, :type_of, :message,
|
|
:project_id, :experiment_id
|
|
belongs_to :my_module, serializer: MyModuleSerializer
|
|
end
|
|
end
|
|
end
|