First draft of API to add items to a collection (#37222)

This commit is contained in:
David Roetzel
2025-12-12 14:09:55 +01:00
committed by GitHub
parent 1e67567d8f
commit 3cc4b59b41
5 changed files with 106 additions and 2 deletions

View File

@@ -3,7 +3,11 @@
class REST::CollectionItemSerializer < ActiveModel::Serializer
delegate :accepted?, to: :object
attributes :position, :state
attributes :id, :position, :state
belongs_to :account, serializer: REST::AccountSerializer, if: :accepted?
def id
object.id.to_s
end
end