18 lines
449 B
Dart
18 lines
449 B
Dart
import 'package:jmap_dart_client/jmap/mail/mailbox/mailbox_rights.dart';
|
|
import 'package:model/caching/mailbox/mailbox_rights_cache.dart';
|
|
|
|
extension MailboxRightsCacheExtension on MailboxRightsCache {
|
|
MailboxRights toMailboxRights() {
|
|
return MailboxRights(
|
|
mayReadItems,
|
|
mayAddItems,
|
|
mayRemoveItems,
|
|
maySetSeen,
|
|
maySetKeywords,
|
|
mayCreateChild,
|
|
mayRename,
|
|
mayDelete,
|
|
maySubmit
|
|
);
|
|
}
|
|
} |