@genesislcap/blank-app-seed 3.39.4 → 3.40.0-prerelease.2
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/.github/CODEOWNERS
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# for reference see https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-code-owners#example-of-a-codeowners-file
|
|
2
2
|
|
|
3
|
-
* @
|
|
3
|
+
* @MrBrunoWolff @skawian @kievitsp @jacinpoz @khouari1 @rafaelnferreira @matteematt @SzymonZur @ArturKrasinski @jay-taylerson
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.40.0-prerelease.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.40.0-prerelease.1...v3.40.0-prerelease.2) (2025-02-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* revert changes 65040e4
|
|
9
|
+
|
|
3
10
|
## [3.39.4](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.39.3...v3.39.4) (2025-01-16)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Auth, Session } from '@genesislcap/foundation-comms';
|
|
2
2
|
import { defaultLoginConfig, LoginConfig } from '@genesislcap/foundation-login';
|
|
3
3
|
import { FoundationRouterConfiguration } from '@genesislcap/foundation-ui';
|
|
4
|
+
import { PUBLIC_PATH } from '@genesislcap/foundation-utils';
|
|
4
5
|
import { NavigationPhase, optional, Route } from '@genesislcap/web-core';
|
|
5
6
|
import { defaultLayout, loginLayout } from '../layouts';
|
|
6
7
|
import { logger } from '../utils';
|
|
@@ -25,6 +26,8 @@ const ssoSettings =
|
|
|
25
26
|
}
|
|
26
27
|
: {};
|
|
27
28
|
|
|
29
|
+
const publicPath = typeof PUBLIC_PATH !== 'undefined' ? PUBLIC_PATH : '';
|
|
30
|
+
|
|
28
31
|
export class MainRouterConfig extends FoundationRouterConfiguration<LoginSettings> {
|
|
29
32
|
constructor(
|
|
30
33
|
@Auth private auth: Auth,
|
|
@@ -56,7 +59,7 @@ export class MainRouterConfig extends FoundationRouterConfiguration<LoginSetting
|
|
|
56
59
|
configure(this.container, {
|
|
57
60
|
hostPath: 'login',
|
|
58
61
|
autoConnect: true,
|
|
59
|
-
defaultRedirectUrl: '{{kebabCase routes.[0].name}}',
|
|
62
|
+
defaultRedirectUrl: publicPath + '{{kebabCase routes.[0].name}}',
|
|
60
63
|
...ssoSettings,
|
|
61
64
|
});
|
|
62
65
|
return define({
|