expose inviter user id

This commit is contained in:
Bruno Windels 2021-04-27 15:01:35 +02:00
parent a95df54978
commit 32d9f6e830

View file

@ -137,6 +137,10 @@ class RoomMemberViewModel {
this._platform = platform; this._platform = platform;
} }
get id() {
return this._member.userId;
}
get name() { get name() {
return this._member.name; return this._member.name;
} }