Create GetOldestEntityCreationTime method (#14515)

This method will be used by the ES index jobs in order
to get the first timestamp to be used as the starting point
when doing indexing tasks
Этот коммит содержится в:
Mario de Frutos Dieguez
2020-06-18 14:34:23 +02:00
коммит произвёл GitHub
родитель ef85001523
Коммит f6c934d7e0
6 изменённых файлов: 87 добавлений и 2 удалений

Просмотреть файл

@@ -270,6 +270,7 @@ type PostStore interface {
GetRepliesForExport(parentId string) ([]*model.ReplyForExport, *model.AppError)
GetDirectPostParentsForExportAfter(limit int, afterId string) ([]*model.DirectPostForExport, *model.AppError)
SearchPostsInTeamForUser(paramsList []*model.SearchParams, userId, teamId string, isOrSearch, includeDeletedChannels bool, page, perPage int) (*model.PostSearchResults, *model.AppError)
GetOldestEntityCreationTime() (int64, *model.AppError)
}
type UserStore interface {