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
@@ -20,4 +20,8 @@ abstract class MailboxRepository {
String name,
String role,
);
/// Creates a new mailbox named [name] for [accountId] without a special role.
/// Returns the newly created [Mailbox].
Future<Mailbox> createMailbox(String accountId, String name);
}