@bnsights/bbsf-admin-portal 1.2.13 → 1.2.14
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/README.md
CHANGED
|
@@ -4,6 +4,12 @@ BBSF Admin Portal package is part of BBSF 3 packages. It hosts all the angular m
|
|
|
4
4
|
|
|
5
5
|
For more info please visit [BBSF documentation](https://bnsightsprojects.visualstudio.com/BBSF%203/_wiki/wikis/BBSF-3.wiki/65/BBSF-Documentation)
|
|
6
6
|
|
|
7
|
+
## 1.2.14 / 24-03-2026
|
|
8
|
+
|
|
9
|
+
=====================
|
|
10
|
+
|
|
11
|
+
- Pass uae pass lang to login with uae pass
|
|
12
|
+
|
|
7
13
|
|
|
8
14
|
## 1.2.13 / 24-03-2026
|
|
9
15
|
|
|
@@ -18560,10 +18560,12 @@ class AuthCallbackComponent {
|
|
|
18560
18560
|
this.code = this.route.snapshot.queryParamMap.get('code');
|
|
18561
18561
|
this.state = this.route.snapshot.queryParamMap.get('state');
|
|
18562
18562
|
let lang = localStorage.getItem('language');
|
|
18563
|
-
if (!lang)
|
|
18563
|
+
if (!lang) {
|
|
18564
18564
|
localStorage.setItem('language', this.state);
|
|
18565
|
+
lang = this.state;
|
|
18566
|
+
}
|
|
18565
18567
|
this.accountService
|
|
18566
|
-
.UAEPassLogin({ accessCode: this.code, redirectUrl: redirectURL, organizationID_GUID: '4A4F22F9-97BA-4928-82A3-B689B413BCAC' })
|
|
18568
|
+
.UAEPassLogin({ accessCode: this.code, redirectUrl: redirectURL, organizationID_GUID: '4A4F22F9-97BA-4928-82A3-B689B413BCAC', lang: lang })
|
|
18567
18569
|
.subscribe({
|
|
18568
18570
|
next: async (res) => {
|
|
18569
18571
|
if (!res.hasError) {
|