Skip to content

Commit

Permalink
Realtime Video: Include getter for member current position (#943)
Browse files Browse the repository at this point in the history
* Include getter for member current position

* include changeset
  • Loading branch information
iAmmar7 authored Jan 11, 2024
1 parent 1ac83fe commit 8335cdf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/shaggy-jobs-confess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@signalwire/realtime-api': patch
---

Add missing getter for member current position
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ export class RoomSessionMember {
return this._payload.member.requested_position
}

get currentPosition() {
return this._payload.member.current_position
}

get visible() {
return this._payload.member.visible
}
Expand Down

0 comments on commit 8335cdf

Please sign in to comment.