@social-mail/social-mail-client 1.8.190 → 1.8.192

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -46037,27 +46037,27 @@ System.register(["@web-atoms/core/dist/core/Command", "../apiPath", "../../servi
46037
46037
  }
46038
46038
  };
46039
46039
  CommonCommands.openMailbox = Command.create({
46040
- route: "/mailbox/{id}",
46040
+ route: "/social-mail/mailbox/{id}",
46041
46041
  routeOrder: 50,
46042
46042
  openPage: () => _context.import("../../web/page/mails/contacts/MailboxContacts")
46043
46043
  });
46044
46044
  CommonCommands.openChannel = Command.create({
46045
- route: "/channel/{id}",
46045
+ route: "/social-mail/channel/{id}",
46046
46046
  routeOrder: 50,
46047
46047
  openPage: () => _context.import("../../web/page/channels/detail/ChannelDetailPage")
46048
46048
  });
46049
46049
  CommonCommands.openSubscribers = Command.create({
46050
- route: "/mailbox-subscribers/{id}",
46050
+ route: "/social-mail/mailbox-subscribers/{id}",
46051
46051
  routeOrder: 50,
46052
46052
  openPage: () => _context.import("../../web/page/channels/subscribers/ChannelSubscribersPage")
46053
46053
  });
46054
46054
  CommonCommands.openDrives = Command.create({
46055
- route: "/drives",
46055
+ route: "/social-mail/drives",
46056
46056
  routeOrder: 100,
46057
46057
  openPage: () => _context.import("../pages/drives/DriveListPage")
46058
46058
  });
46059
46059
  CommonCommands.openFiles = Command.create({
46060
- route: "/files/{id}",
46060
+ route: "/social-mail/files/{id}",
46061
46061
  routeOrder: 100,
46062
46062
  openPage: () => _context.import("../pages/files/folder/FolderPage")
46063
46063
  });
@@ -46070,7 +46070,7 @@ System.register(["@web-atoms/core/dist/core/Command", "../apiPath", "../../servi
46070
46070
  pushPage: () => _context.import("../pages/user/multi-factor/MultiFactorSetupPage")
46071
46071
  });
46072
46072
  CommonCommands.openWebSiteList = Command.create({
46073
- route: "/websites",
46073
+ route: "/social-mail/websites",
46074
46074
  routeOrder: 2000,
46075
46075
  openPage: () => _context.import("../pages/websites/list/WebSiteListPage")
46076
46076
  });
@@ -48895,7 +48895,9 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "@web-atom
48895
48895
  }
48896
48896
  openLoginPage() {
48897
48897
  if (SocialMailApp.config.externalLogin) {
48898
- location.href = SocialMailApp.config.externalLogin;
48898
+ const url = new URL(SocialMailApp.config.externalLogin);
48899
+ url.searchParams.append("returnUrl", location.href);
48900
+ location.href = url.toString();
48899
48901
  }
48900
48902
  PageNavigator.openPage(LoginPage);
48901
48903
  }