@genesislcap/blank-app-seed 4.0.0-prerelease.7 → 4.0.0-prerelease.9
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.
package/.genx/package.json
CHANGED
package/.genx/versions.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.0.0-prerelease.9](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v4.0.0-prerelease.8...v4.0.0-prerelease.9) (2025-03-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* correct path for login redirect d2f5be8
|
|
9
|
+
|
|
10
|
+
## [4.0.0-prerelease.8](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v4.0.0-prerelease.7...v4.0.0-prerelease.8) (2025-03-27)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 7c83e14
|
|
16
|
+
|
|
3
17
|
## [4.0.0-prerelease.7](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v4.0.0-prerelease.6...v4.0.0-prerelease.7) (2025-03-27)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -19,7 +19,7 @@ const ssoSettings =
|
|
|
19
19
|
autoAuth: true,
|
|
20
20
|
sso: {
|
|
21
21
|
toggled: true,
|
|
22
|
-
identityProvidersPath: 'sso/list',
|
|
22
|
+
identityProvidersPath: 'gwf/sso/list',
|
|
23
23
|
},
|
|
24
24
|
}
|
|
25
25
|
: {};
|
|
@@ -61,7 +61,7 @@ export class MainRouterConfig extends FoundationRouterConfiguration<LoginSetting
|
|
|
61
61
|
hostPath: this.loginPath,
|
|
62
62
|
postLoginRedirect: async () => {
|
|
63
63
|
await this.connect.connect(GENESIS_SOCKET_URL);
|
|
64
|
-
navigateTo(getUser().lastPath() ?? publicPath + '{{kebabCase routes.[0].name}}');
|
|
64
|
+
navigateTo(getUser().lastPath() ?? publicPath + '/{{kebabCase routes.[0].name}}');
|
|
65
65
|
},
|
|
66
66
|
postLogoutRedirect: () => {
|
|
67
67
|
if (this.connect.isConnected) {
|