Redirect inbox to login. Fixes #105

This commit is contained in:
Dessalines 2020-12-15 18:43:35 -05:00
parent a0c045b2fb
commit edcaf00486

View file

@ -87,6 +87,11 @@ export class Inbox extends Component<any, InboxState> {
this.state = this.emptyState;
this.handleSortChange = this.handleSortChange.bind(this);
if (!UserService.Instance.user && isBrowser()) {
toast(i18n.t('not_logged_in'), 'danger');
this.context.router.history.push(`/login`);
}
this.parseMessage = this.parseMessage.bind(this);
this.subscription = wsSubscribe(this.parseMessage);