summaryrefslogtreecommitdiffstats
path: root/model/status.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/status.go')
-rw-r--r--model/status.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/model/status.go b/model/status.go
index 477b750d5..f4ad8e775 100644
--- a/model/status.go
+++ b/model/status.go
@@ -9,10 +9,11 @@ import (
)
const (
- STATUS_OFFLINE = "offline"
- STATUS_AWAY = "away"
- STATUS_ONLINE = "online"
- STATUS_CACHE_SIZE = 10000
+ STATUS_OFFLINE = "offline"
+ STATUS_AWAY = "away"
+ STATUS_ONLINE = "online"
+ STATUS_CACHE_SIZE = 10000
+ STATUS_CHANNEL_TIMEOUT = 20000 // 20 seconds
)
type Status struct {
@@ -20,6 +21,7 @@ type Status struct {
Status string `json:"status"`
Manual bool `json:"manual"`
LastActivityAt int64 `json:"last_activity_at"`
+ ActiveChannel string `json:"active_channel"`
}
func (o *Status) ToJson() string {