11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
export default ($root: any) => {
|
|
if ($root.$store.getters.isSignedIn) return;
|
|
|
|
$store.dispatch('showDialog', {
|
|
title: $root.$t('signinRequired'),
|
|
text: null
|
|
});
|
|
|
|
throw new Error('signin required');
|
|
};
|