aboutsummaryrefslogtreecommitdiff
path: root/interface/ui.go
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2019-06-15 01:11:51 +0300
committerTulir Asokan <tulir@maunium.net>2019-06-15 01:11:54 +0300
commita55ea42d7f5900bd5fc8fad047040c7865824f33 (patch)
tree2b5ee3f3087751471903a21e99ca7a68fc97b928 /interface/ui.go
parenta4ac699c930e783175b6451a5becd7b70835aefb (diff)
Unbreak things
Diffstat (limited to 'interface/ui.go')
-rw-r--r--interface/ui.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/interface/ui.go b/interface/ui.go
index 781f803..48a6007 100644
--- a/interface/ui.go
+++ b/interface/ui.go
@@ -43,14 +43,13 @@ type MainView interface {
GetRoom(roomID string) RoomView
AddRoom(room *rooms.Room)
RemoveRoom(room *rooms.Room)
- SetRooms(rooms map[string]*rooms.Room)
+ SetRooms(rooms *rooms.RoomCache)
UpdateTags(room *rooms.Room)
SetTyping(roomID string, users []string)
NotifyMessage(room *rooms.Room, message Message, should pushrules.PushActionArrayShould)
- InitialSyncDone()
}
type RoomView interface {
@@ -68,13 +67,10 @@ type RoomView interface {
type Message interface {
ID() string
- TxnID() string
- SenderID() string
- Timestamp() time.Time
+ Time() time.Time
NotificationSenderName() string
NotificationContent() string
- SetState(state mautrix.OutgoingEventState)
SetIsHighlight(highlight bool)
SetID(id string)
}