MM-10233: Add scheme importing to bulk importer. (#8928)

This commit is contained in:
George Goldberg
2018-06-21 12:02:35 +01:00
committed by GitHub
parent 8e24dd78fb
commit 1f65f0e3d6
45 changed files with 1224 additions and 127 deletions

View File

@@ -489,6 +489,7 @@ type RoleStore interface {
type SchemeStore interface {
Save(scheme *model.Scheme) StoreChannel
Get(schemeId string) StoreChannel
GetByName(schemeName string) StoreChannel
GetAllPage(scope string, offset int, limit int) StoreChannel
Delete(schemeId string) StoreChannel
PermanentDeleteAll() StoreChannel