summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-09-26 13:41:50 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2016-09-26 13:41:50 -0400
commit667db6e10c7bf4d3856a1f94eaad34d9e03352c1 (patch)
tree44fa38e30a277a11acc51453f1399aa21983e8f8 /store/store.go
parent7fcc004beb9f6ef022f755e8e2f2a958c976c637 (diff)
downloadchat-667db6e10c7bf4d3856a1f94eaad34d9e03352c1.tar.gz
chat-667db6e10c7bf4d3856a1f94eaad34d9e03352c1.tar.bz2
chat-667db6e10c7bf4d3856a1f94eaad34d9e03352c1.zip
Cleaning up some old code from the permissions system change (#4090)
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/store/store.go b/store/store.go
index 620a99ff3..fbe415986 100644
--- a/store/store.go
+++ b/store/store.go
@@ -95,10 +95,6 @@ type ChannelStore interface {
RemoveMember(channelId string, userId string) StoreChannel
PermanentDeleteMembersByUser(userId string) StoreChannel
GetExtraMembers(channelId string, limit int) StoreChannel
- CheckPermissionsTo(teamId string, channelId string, userId string) StoreChannel
- CheckPermissionsToNoTeam(channelId string, userId string) StoreChannel
- CheckOpenChannelPermissions(teamId string, channelId string) StoreChannel
- CheckPermissionsToByName(teamId string, channelName string, userId string) StoreChannel
UpdateLastViewedAt(channelId string, userId string) StoreChannel
SetLastViewedAt(channelId string, userId string, newLastViewedAt int64) StoreChannel
IncrementMentionCount(channelId string, userId string) StoreChannel