blob: ebd7dd82ab43f5696adcfd6dada984ee18e1c452 (
plain)
1
2
3
4
5
6
7
8
9
10
|
export default ($root: any) => {
if ($root.$store.getters.isSignedIn) return;
$root.dialog({
title: $root.$t('signinRequired'),
text: null
});
throw new Error('signin required');
};
|