[develop]: Fix the redirection URL after verification of a manager for Irish and Monitor.

This commit is contained in:
Konstantinos Triantafyllou 2024-07-11 17:00:09 +03:00
parent 7a18b65b40
commit 92f799e63b
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ export class RoleVerificationComponent extends BaseComponent implements OnInit,
this.error = null;
if(this.service === "irish" || this.service === "monitor") {
this.loading = false;
this.userManagementService.login(properties.domain + '/admin/' + this.verification.entity);
this.userManagementService.login(properties.domain + properties.baseLink + '/admin/' + this.verification.entity);
} else {
this.subscriptions.push(this.emailService.notifyManagers(this.id, 'manager',
Composer.composeEmailToInformOldManagersForTheNewOnes(this.name, this.id)).subscribe(() => {