Logout on deleteuser event
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good Details

2022.01
Willem Dantuma 2021-05-05 18:56:53 +02:00
parent 4f9cdf1588
commit 6e79afd115
1 changed files with 5 additions and 1 deletions

View File

@ -104,7 +104,11 @@ export class AppComponent implements OnInit, OnDestroy {
case "notification": {
action = new commonActions.NotificationEvent(event.attributes);
break;
}
}
case "DeleteUser": {
action = new commonActions.Logout();
break;
}
}
return action;
}