intelica-library-components 1.1.76 → 1.1.77
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.
|
@@ -106,7 +106,7 @@ class TermService {
|
|
|
106
106
|
_http = inject(HttpClient);
|
|
107
107
|
_config = inject(ConfigService);
|
|
108
108
|
GetTerms(languageCode, pageRoot) {
|
|
109
|
-
return this._http.get(`${this._config.environment?.securityPath}/Term/GetPageTerm/${languageCode}/${pageRoot}`);
|
|
109
|
+
return this._http.get(`${this._config.environment?.securityPath}/ignore/Term/GetPageTerm/${languageCode}/${pageRoot}`);
|
|
110
110
|
}
|
|
111
111
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TermService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
112
112
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TermService, providedIn: "root" });
|
|
@@ -655,7 +655,7 @@ const RefreshTokenInterceptor = (req, next) => {
|
|
|
655
655
|
const cookieAttributesGeneral = GetCookieAttributes(configService.environment?.environment ?? "");
|
|
656
656
|
let _request = req.clone();
|
|
657
657
|
let authenticationLocation = `${configService.environment?.authenticationWeb}?callback=${window.location.href}&clientID=${configService.environment?.clientID}`;
|
|
658
|
-
let path = `${configService.environment?.authenticationPath ?? ""}/Authenticate/auth/token/validate`;
|
|
658
|
+
let path = `${configService.environment?.authenticationPath ?? ""}/ignore/Authenticate/auth/token/validate`;
|
|
659
659
|
var authenticationClientID = configService.environment?.clientID ?? "";
|
|
660
660
|
let validateTokenQuery = {
|
|
661
661
|
token: getCookie("token") ?? "",
|
|
@@ -799,7 +799,7 @@ class RouteGuardService {
|
|
|
799
799
|
ValidateToken(pageRoot) {
|
|
800
800
|
const cookieAttributesGeneral = GetCookieAttributes(this.ConfigService.environment?.environment ?? "");
|
|
801
801
|
const authenticationLocation = `${this.ConfigService.environment?.authenticationWeb}?callback=${window.location.href}&clientID=${this.ConfigService.environment?.clientID}`;
|
|
802
|
-
const path = `${this.ConfigService.environment?.authenticationPath ?? ""}/Authenticate/ValidateToken`;
|
|
802
|
+
const path = `${this.ConfigService.environment?.authenticationPath ?? ""}/ignore/Authenticate/ValidateToken`;
|
|
803
803
|
const authenticationClientID = this.ConfigService.environment?.clientID ?? "";
|
|
804
804
|
const validateTokenQuery = {
|
|
805
805
|
token: getCookie("token") ?? "",
|