@alfresco/adf-core 8.4.0-18778851774 → 8.4.0-18787036972
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/fesm2022/adf-core.mjs
CHANGED
|
@@ -10605,6 +10605,37 @@ const OidcAuthGuard = async () => {
|
|
|
10605
10605
|
}
|
|
10606
10606
|
};
|
|
10607
10607
|
|
|
10608
|
+
/*!
|
|
10609
|
+
* @license
|
|
10610
|
+
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
10611
|
+
*
|
|
10612
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10613
|
+
* you may not use this file except in compliance with the License.
|
|
10614
|
+
* You may obtain a copy of the License at
|
|
10615
|
+
*
|
|
10616
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10617
|
+
*
|
|
10618
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
10619
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
10620
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10621
|
+
* See the License for the specific language governing permissions and
|
|
10622
|
+
* limitations under the License.
|
|
10623
|
+
*/
|
|
10624
|
+
class FrontChannelLogoutComponent {
|
|
10625
|
+
constructor() {
|
|
10626
|
+
this.authService = inject(AuthService);
|
|
10627
|
+
}
|
|
10628
|
+
ngOnInit() {
|
|
10629
|
+
this.authService.logout();
|
|
10630
|
+
}
|
|
10631
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: FrontChannelLogoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
10632
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: FrontChannelLogoutComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: '', isInline: true }); }
|
|
10633
|
+
}
|
|
10634
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: FrontChannelLogoutComponent, decorators: [{
|
|
10635
|
+
type: Component,
|
|
10636
|
+
args: [{ template: '', standalone: true }]
|
|
10637
|
+
}] });
|
|
10638
|
+
|
|
10608
10639
|
/*!
|
|
10609
10640
|
* @license
|
|
10610
10641
|
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
@@ -10622,7 +10653,8 @@ const OidcAuthGuard = async () => {
|
|
|
10622
10653
|
* limitations under the License.
|
|
10623
10654
|
*/
|
|
10624
10655
|
const AUTH_ROUTES = [
|
|
10625
|
-
{ path: 'view/authentication-confirmation', component: AuthenticationConfirmationComponent, canActivate: [OidcAuthGuard] }
|
|
10656
|
+
{ path: 'view/authentication-confirmation', component: AuthenticationConfirmationComponent, canActivate: [OidcAuthGuard] },
|
|
10657
|
+
{ path: 'oidc/frontchannel_logout', component: FrontChannelLogoutComponent }
|
|
10626
10658
|
];
|
|
10627
10659
|
|
|
10628
10660
|
/*!
|