blob: 7125541bb1b164336d4d9b53748ec0a2f367de36 (
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('@.signin-required'),
text: null
});
throw new Error('signin required');
};
|