Skip to content

Commit

Permalink
Always announce partial support for write
Browse files Browse the repository at this point in the history
  • Loading branch information
DerAndereAndi committed Mar 8, 2024
1 parent c643b4d commit 5f0e5a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion spine/operations.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ func (r *Operations) Information() *model.PossibleOperationsType {
res.Read = &model.PossibleOperationsReadType{}
}
if r.write {
res.Write = &model.PossibleOperationsWriteType{}
res.Write = &model.PossibleOperationsWriteType{
Partial: &model.ElementTagType{},
}
}

return res
Expand Down

0 comments on commit 5f0e5a2

Please sign in to comment.