Logout on deleteuser event
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma 2021-05-05 18:56:53 +02:00
parent 4f9cdf1588
commit 6e79afd115

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;
}