chore: checkout features from trift to devel

This commit is contained in:
Jakub
2023-08-15 15:33:29 +02:00
parent cba73997cd
commit e724fafe2f
7 changed files with 19 additions and 40 deletions

View File

@ -37,7 +37,7 @@ type APIClient interface {
GetMessage(ctx context.Context, messageID string) (proton.Message, error)
GetMessageMetadataPage(ctx context.Context, page, pageSize int, filter proton.MessageFilter) ([]proton.MessageMetadata, error)
GetMessageIDs(ctx context.Context, afterID string) ([]string, error)
GetAllMessageIDs(ctx context.Context, afterID string) ([]string, error)
CreateDraft(ctx context.Context, addrKR *crypto.KeyRing, req proton.CreateDraftReq) (proton.Message, error)
UploadAttachment(ctx context.Context, addrKR *crypto.KeyRing, req proton.CreateAttachmentReq) (proton.Attachment, error)
ImportMessages(ctx context.Context, addrKR *crypto.KeyRing, workers, buffer int, req ...proton.ImportReq) (stream.Stream[proton.ImportRes], error)

View File

@ -162,7 +162,7 @@ func (s *syncJob) sync(ctx context.Context) error {
s.log.Info("Syncing messages")
// Determine which messages to sync.
messageIDs, err := s.client.GetMessageIDs(ctx, "")
messageIDs, err := s.client.GetAllMessageIDs(ctx, "")
if err != nil {
return fmt.Errorf("failed to get message IDs to sync: %w", err)
}