mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-01 13:13:22 +08:00
10 lines
183 B
Ruby
10 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
|