diff options
author | Joram Wilander <jwawilander@gmail.com> | 2015-10-02 08:45:38 -0400 |
---|---|---|
committer | Joram Wilander <jwawilander@gmail.com> | 2015-10-02 08:45:38 -0400 |
commit | 08d390953a822371380b4264c3fb4cf891440995 (patch) | |
tree | f5f38c6fa649aa206fc751290b8a588fd1da9828 /store/store.go | |
parent | fbbee5bf614c1cbce5a4beb02d553b3261c8d749 (diff) | |
parent | c9a0030551f289241407743fbd21080cd8a358a4 (diff) | |
download | chat-08d390953a822371380b4264c3fb4cf891440995.tar.gz chat-08d390953a822371380b4264c3fb4cf891440995.tar.bz2 chat-08d390953a822371380b4264c3fb4cf891440995.zip |
Merge pull request #881 from hmhealey/plt194
PLT-194 Changes to ChannelMember notification settings
Diffstat (limited to 'store/store.go')
-rw-r--r-- | store/store.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/store/store.go b/store/store.go index 23580f452..887913bc6 100644 --- a/store/store.go +++ b/store/store.go @@ -62,6 +62,7 @@ type ChannelStore interface { GetForExport(teamId string) StoreChannel SaveMember(member *model.ChannelMember) StoreChannel + UpdateMember(member *model.ChannelMember) StoreChannel GetMembers(channelId string) StoreChannel GetMember(channelId string, userId string) StoreChannel RemoveMember(channelId string, userId string) StoreChannel @@ -71,7 +72,6 @@ type ChannelStore interface { CheckPermissionsToByName(teamId string, channelName string, userId string) StoreChannel UpdateLastViewedAt(channelId string, userId string) StoreChannel IncrementMentionCount(channelId string, userId string) StoreChannel - UpdateNotifyLevel(channelId string, userId string, notifyLevel string) StoreChannel } type PostStore interface { |