Skip to content
Snippets Groups Projects
Commit 1e73bd34 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FEAT #13268 TIME 0:05 fix admin sso

parent 08be3438
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ export class SsoAdministrationComponent implements OnInit {
getConnection() {
this.http.get(`../rest/configurations/admin_sso`).pipe(
tap((data: any) => {
this.sso = data.configuration;
this.sso = data.configuration.value;
this.ssoClone = JSON.parse(JSON.stringify(this.sso));
this.loading = false;
}),
......
......@@ -22,14 +22,8 @@ export class AppLightGuard implements CanActivate {
constructor(
public translate: TranslateService,
public http: HttpClient,
private router: Router,
private authService: AuthService,
private localStorage: LocalStorageService,
private functionService: FunctionsService,
public headerService: HeaderService,
private privilegeService: PrivilegeService,
private dialog: MatDialog,
private functionsService: FunctionsService,
) { }
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<any> {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment