f6154dc0af
Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com> Co-authored-by: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>
11 lines
195 B
TypeScript
11 lines
195 B
TypeScript
export default ($root: any) => {
|
|
if ($root.$store.getters.isSignedIn) return;
|
|
|
|
$root.dialog({
|
|
title: $root.$t('@.signin-required'),
|
|
text: null
|
|
});
|
|
|
|
throw new Error('signin required');
|
|
};
|