summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/store/store.go b/store/store.go
index 1738ba84e..7ec5ac3a5 100644
--- a/store/store.go
+++ b/store/store.go
@@ -33,6 +33,7 @@ type Store interface {
Post() PostStore
User() UserStore
Audit() AuditStore
+ Compliance() ComplianceStore
Session() SessionStore
OAuth() OAuthStore
System() SystemStore
@@ -153,6 +154,14 @@ type AuditStore interface {
PermanentDeleteByUser(userId string) StoreChannel
}
+type ComplianceStore interface {
+ Save(compliance *model.Compliance) StoreChannel
+ Update(compliance *model.Compliance) StoreChannel
+ Get(id string) StoreChannel
+ GetAll() StoreChannel
+ ComplianceExport(compliance *model.Compliance) StoreChannel
+}
+
type OAuthStore interface {
SaveApp(app *model.OAuthApp) StoreChannel
UpdateApp(app *model.OAuthApp) StoreChannel