Simulate breaking change 7

This commit is contained in:
mauriziovitale
2024-07-18 15:04:40 +02:00
parent 2cbd46601f
commit 6f67261bd2
4 changed files with 4 additions and 8 deletions

View File

@@ -15,4 +15,4 @@
* limitations under the License. * limitations under the License.
*/ */
export * from './public-api2'; export * from './public-api';

View File

@@ -59,10 +59,6 @@ export class OidcAuthenticationService extends BaseAuthenticationService {
return false; return false;
} }
isLoggedIn(): boolean {
return this.oauthService.hasValidAccessToken() && this.oauthService.hasValidIdToken();
}
hasValidAccessToken(): boolean { hasValidAccessToken(): boolean {
return this.oauthService.hasValidAccessToken(); return this.oauthService.hasValidAccessToken();
} }

View File

@@ -17,8 +17,8 @@
export * from './auth-routing.module'; export * from './auth-routing.module';
export * from './auth.module'; export * from './auth.module';
// export * from './auth.service'; export * from './auth.service';
// export * from './oidc-auth.guard'; export * from './oidc-auth.guard';
export * from './redirect-auth.service'; export * from './redirect-auth.service';
export * from './view/authentication-confirmation/authentication-confirmation.component'; export * from './view/authentication-confirmation/authentication-confirmation.component';
export * from './oidc-authentication.service'; export * from './oidc-authentication.service';

View File

@@ -43,7 +43,7 @@ export abstract class BaseAuthenticationService implements AuthenticationService
abstract getToken(): string; abstract getToken(): string;
abstract isLoggedIn(): boolean; abstract isLoggedInNew(): boolean;
abstract logout(): any; abstract logout(): any;