summaryrefslogtreecommitdiff
path: root/packages/client/src/scripts/please-login.ts
blob: fe3919e4c7b586faba477b7a14f5c92b29158876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { $i } from '@/account';
import { i18n } from '@/i18n';
import { alert } from '@/os';

export function pleaseLogin() {
	if ($i) return;

	alert({
		title: i18n.locale.signinRequired,
		text: null
	});

	throw new Error('signin required');
}