This commit is contained in:
eromano
2023-07-24 18:54:53 +02:00
parent 20cfe3ed93
commit 3e22233002
2 changed files with 7 additions and 1 deletions

View File

@@ -145,6 +145,7 @@ import { UserInfoComponent } from './components/app-layout/user-info/user-info.c
bootstrap: [AppComponent]
})
export class AppModule {
constructor() {
constructor(automationService: CoreAutomationService) {
automationService.setup();
}
}

View File

@@ -39,6 +39,11 @@ export class CoreAutomationService {
) {
// eslint-disable-next-line no-console
console.log('ADF Core AutomationService init');
}
setup() {
// eslint-disable-next-line no-console
console.log('ADF Core setup');
const adfProxy = window['adf'] || {};