summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-10-22 21:37:41 -0700
committerCorey Hulen <corey@hulen.com>2015-10-22 21:37:41 -0700
commit640176bd4c9fd13878a3faca12d5ad41512547ba (patch)
treef906e8bd679b6e0cf33b62ede4b6468cf56b7823 /store/store.go
parent0ed40545d0057eca34ff1852b29616e9bf4520ee (diff)
parent6cc3bfe7a96e66d27a5b7f08bc1dc15a742b36ab (diff)
downloadchat-640176bd4c9fd13878a3faca12d5ad41512547ba.tar.gz
chat-640176bd4c9fd13878a3faca12d5ad41512547ba.tar.bz2
chat-640176bd4c9fd13878a3faca12d5ad41512547ba.zip
Merge pull request #1142 from mattermost/plt-414
PLT-414 Fix direct channel creation.
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 27731cee1..1cf686a70 100644
--- a/store/store.go
+++ b/store/store.go
@@ -54,6 +54,7 @@ type TeamStore interface {
type ChannelStore interface {
Save(channel *model.Channel) StoreChannel
+ SaveDirectChannel(channel *model.Channel, member1 *model.ChannelMember, member2 *model.ChannelMember) StoreChannel
Update(channel *model.Channel) StoreChannel
Get(id string) StoreChannel
Delete(channelId string, time int64) StoreChannel