diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 023df125..02550e6b 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -18,7 +18,6 @@ import {AuthInterceptor, RestService,} from './rest/rest.service'; import {ClusterRestService} from './rest/cluster.service'; import {SupportRestService} from './rest/support.service'; import {HTTP_INTERCEPTORS} from '@angular/common/http'; -//import { AuthInterceptor } from './rest/auth.interceptor'; import {ClipboardModule} from 'ngx-clipboard'; import {Locale} from './locale/locale'; import {AppPageComponent} from "./app.page/app.page.component"; diff --git a/src/app/app.page/app.definitions.ts b/src/app/app.page/app.definitions.ts index c2cc78f3..88f9bed0 100644 --- a/src/app/app.page/app.definitions.ts +++ b/src/app/app.page/app.definitions.ts @@ -173,7 +173,8 @@ export class ServerSettings { constructor(public serverName: string, public licenceKey: string, public buildForMarket: boolean, - public logLevel: string + public logLevel: string, + public jwtServerControlEnabled: boolean ) {} } diff --git a/src/app/app.page/app.page.component.ts b/src/app/app.page/app.page.component.ts index 9dd8fe75..ba585607 100644 --- a/src/app/app.page/app.page.component.ts +++ b/src/app/app.page/app.page.component.ts @@ -674,7 +674,6 @@ export class AppPageComponent implements OnInit, OnDestroy, AfterViewInit { } this.dataSource = new MatTableDataSource(this.broadcastTableData.dataRows); - console.log(this.dataSource) this.cdr.detectChanges(); }, error => { show403Error(error); }); @@ -1323,7 +1322,7 @@ export class AppPageComponent implements OnInit, OnDestroy, AfterViewInit { }); }, - error => + error => { show403Error(error); }); diff --git a/src/app/pages/login/login.component.html b/src/app/pages/login/login.component.html index 1db906ac..f4462307 100644 --- a/src/app/pages/login/login.component.html +++ b/src/app/pages/login/login.component.html @@ -43,23 +43,36 @@