diff --git a/projects/common/src/fm/components/app/app.component.ts b/projects/common/src/fm/components/app/app.component.ts index ae59fdb..cb19ca0 100644 --- a/projects/common/src/fm/components/app/app.component.ts +++ b/projects/common/src/fm/components/app/app.component.ts @@ -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; }