Fix #10963: GetDirectPostParentsForExportAfter is sync now (#11009)

This commit is contained in:
Rodrigo Villablanca Vásquez
2019-05-30 17:19:14 -04:00
committed by Hanzei
parent 76e00b406e
commit 9fa1622fc3
6 changed files with 108 additions and 108 deletions

View File

@@ -240,7 +240,7 @@ type PostStore interface {
GetMaxPostSize() int
GetParentsForExportAfter(limit int, afterId string) StoreChannel
GetRepliesForExport(parentId string) StoreChannel
GetDirectPostParentsForExportAfter(limit int, afterId string) StoreChannel
GetDirectPostParentsForExportAfter(limit int, afterId string) ([]*model.DirectPostForExport, *model.AppError)
}
type UserStore interface {