Implement compliance endpoints for APIv4 (#5683)

* Implement compliance endpoints for APIv4

* Add paging to get reports endpoint
This commit is contained in:
Joram Wilander
2017-03-13 10:14:16 -04:00
committed by GitHub
parent a284cd8c18
commit 3ebfb36953
11 changed files with 241 additions and 9 deletions

View File

@@ -228,7 +228,7 @@ type ComplianceStore interface {
Save(compliance *model.Compliance) StoreChannel
Update(compliance *model.Compliance) StoreChannel
Get(id string) StoreChannel
GetAll() StoreChannel
GetAll(offset, limit int) StoreChannel
ComplianceExport(compliance *model.Compliance) StoreChannel
}