TF-1074 Handle go to path /identity_creator
This commit is contained in:
@@ -52,6 +52,11 @@ class AppPages {
|
||||
opaque: false,
|
||||
page: () => DeferredWidget(contact_view.loadLibrary, () => contact_view.ContactView()),
|
||||
binding: ContactBindings()),
|
||||
GetPage(
|
||||
name: AppRoutes.identityCreator,
|
||||
opaque: false,
|
||||
page: () => DeferredWidget(identity_creator.loadLibrary, () => identity_creator.IdentityCreatorView()),
|
||||
binding: IdentityCreatorBindings()),
|
||||
];
|
||||
|
||||
static final pages = [
|
||||
@@ -76,12 +81,6 @@ class AppPages {
|
||||
page: () => DeferredWidget(manage_account_dashboard.loadLibrary,
|
||||
() => manage_account_dashboard.ManageAccountDashBoardView()),
|
||||
binding: ManageAccountDashBoardBindings()),
|
||||
GetPage(
|
||||
name: AppRoutes.identityCreator,
|
||||
opaque: false,
|
||||
page: () => DeferredWidget(identity_creator.loadLibrary,
|
||||
() => identity_creator.IdentityCreatorView()),
|
||||
binding: IdentityCreatorBindings()),
|
||||
GetPage(
|
||||
name: AppRoutes.rulesFilterCreator,
|
||||
opaque: false,
|
||||
|
||||
@@ -9,7 +9,7 @@ abstract class AppRoutes {
|
||||
static const destinationPicker = '/destination_picker';
|
||||
static const mailboxCreator = '/mailbox_creator';
|
||||
static const contact = '/contact';
|
||||
static const identityCreator = '$settings/identity_creator';
|
||||
static const identityCreator = '/identity_creator';
|
||||
static const rulesFilterCreator = '$settings/rules_filter_creator';
|
||||
static const emailsForwardCreator = '$settings/emails_forward_creator';
|
||||
}
|
||||
Reference in New Issue
Block a user