Add verified devices indicator to room header

This commit is contained in:
miruka
2020-06-27 11:11:14 -04:00
parent 90a7a3a6cf
commit 0a2d274824
5 changed files with 65 additions and 8 deletions

View File

@@ -68,10 +68,11 @@ class Room(ModelItem):
typing_members: List[str] = field(default_factory=list)
federated: bool = True
encrypted: bool = False
invite_required: bool = True
guests_allowed: bool = True
federated: bool = True
encrypted: bool = False
unverified_devices: bool = False
invite_required: bool = True
guests_allowed: bool = True
can_invite: bool = False
can_kick: bool = False