This function allows to split an input string according to a separator after removing all spaces from it * if and only if the input string contains the separator
diff --git a/letsco-api/src/main/resources/application.yml b/letsco-api/src/main/resources/application.yml index ed2ce40..5656a42 100644 --- a/letsco-api/src/main/resources/application.yml +++ b/letsco-api/src/main/resources/application.yml @@ -57,11 +57,19 @@ opfab: cardsPub: http://localhost:2102/cards feed: sourceA_messageTypeNameA: - title: "SOURCE A - custom title" - summary: "Source A - custom summary - {{businessDayFrom::dateFormat(dd/MM/yyyy HH:mm)}} - {{sendingUser::eicToName()}}" - entityRecipientsNotAllowed: + title: " STA - Generation Tripping Validation - {{result::notificationTitle()}}" + summary: "{{businessDayFrom::dateFormat(dd/MM/yyyy HH:mm)}} - {{businessDayTo::dateFormat(dd/MM/yyyy HH:mm)}} (CET/CEST) - {{sendingUser::eicToName()}}" + sourceA_messageTypeNameB: + title: " STA - HVDC Tripping information Validation - {{result::notificationTitle()}}" + summary: "{{businessDayFrom::dateFormat(dd/MM/yyyy HH:mm)}} - {{businessDayTo::dateFormat(dd/MM/yyyy HH:mm)}} (CET/CEST) - {{sendingUser::eicToName()}}" + + entityRecipients: sourceA_messageTypeNameA: - - sendingUser + notAllowed: sendingUser + addRscs: true + sourceA_messageTypeNameB: + notAllowed: sendingUser + addRscs: true third-app: url: http://localhost:8081 \ No newline at end of file diff --git a/letsco-front/angular.json b/letsco-front/angular.json index d88c1bf..3a8fcac 100644 --- a/letsco-front/angular.json +++ b/letsco-front/angular.json @@ -43,8 +43,8 @@ "tsConfig": "tsconfig.app.json", "aot": false, "assets": [ - "src/assets", - "src/assets/favicon.ico", + "src/letsco/assets", + "src/letsco/assets/favicon.ico", "src/letsco-env/env.js" ], "styles": [ diff --git a/letsco-front/src/app/app.component.ts b/letsco-front/src/app/app.component.ts index 2a1c26e..1d3684f 100644 --- a/letsco-front/src/app/app.component.ts +++ b/letsco-front/src/app/app.component.ts @@ -9,13 +9,33 @@ * This file is part of the Let’s Coordinate project. */ -import { Component } from '@angular/core'; +import {AfterViewChecked, Component, OnInit} from '@angular/core'; +import {ActivatedRoute} from "@angular/router"; +import {ThemeService} from "./core/services/theme.service"; @Component({ selector: 'app-root', template: `@@ -49,8 +55,8 @@