mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-06 06:56:54 +08:00
11 lines
183 B
Ruby
11 lines
183 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Api
|
||
|
module V1
|
||
|
class ResultAssetSerializer < ActiveModel::Serializer
|
||
|
type :result_assets
|
||
|
attributes :asset_id
|
||
|
end
|
||
|
end
|
||
|
end
|