feat: add 'Create new folder' option to Move To Folder dialog (#423)

This commit was merged in pull request #423.
This commit is contained in:
Bot of Thomas Güttler
2026-06-05 18:53:36 +02:00
parent 9ca7089c50
commit 3bd404f0cf
9 changed files with 152 additions and 5 deletions
@@ -169,6 +169,15 @@ class _FakeMailboxes implements MailboxRepository {
unreadCount: 0,
totalCount: 0,
);
@override
Future<Mailbox> createMailbox(String accountId, String name) async => Mailbox(
id: '$accountId:$name',
accountId: accountId,
path: name,
name: name,
unreadCount: 0,
totalCount: 0,
);
}
class _FakeEmails implements EmailRepository {