summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-11-16 18:18:37 -0800
committer=Corey Hulen <corey@hulen.com>2015-11-16 18:18:37 -0800
commitcbee8674d2c930a1d9ee98c1f2fb76f96d666900 (patch)
tree835ffcc7d447cdf40dc239832132b0cd7ee5819f /store/store.go
parent2ddbf518f437b8894cd1c3c02bd7d7fcb98e60f4 (diff)
downloadchat-cbee8674d2c930a1d9ee98c1f2fb76f96d666900.tar.gz
chat-cbee8674d2c930a1d9ee98c1f2fb76f96d666900.tar.bz2
chat-cbee8674d2c930a1d9ee98c1f2fb76f96d666900.zip
Adding perm delete channels by team
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/store/store.go b/store/store.go
index a8b57dcdd..338ae186f 100644
--- a/store/store.go
+++ b/store/store.go
@@ -61,6 +61,7 @@ type ChannelStore interface {
Update(channel *model.Channel) StoreChannel
Get(id string) StoreChannel
Delete(channelId string, time int64) StoreChannel
+ PermanentDeleteByTeam(teamId string) StoreChannel
GetByName(team_id string, domain string) StoreChannel
GetChannels(teamId string, userId string) StoreChannel
GetMoreChannels(teamId string, userId string) StoreChannel