summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
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 271caa366..2770dfd16 100644
--- a/store/store.go
+++ b/store/store.go
@@ -39,6 +39,7 @@ type Store interface {
type TeamStore interface {
Save(team *model.Team) StoreChannel
+ SaveWithValidate(team *model.Team, validate bool) StoreChannel
Update(team *model.Team) StoreChannel
UpdateDisplayName(name string, teamId string) StoreChannel
Get(id string) StoreChannel