This commit is contained in:
syuilo
2020-03-31 08:07:10 +09:00
parent cc66a1f9c7
commit 6a732ab1cd
3 changed files with 9 additions and 5 deletions

View File

@ -17,7 +17,9 @@ export const meta = {
};
export default define(meta, async (ps, me) => {
const noUsers = (await Users.count({})) === 0;
const noUsers = (await Users.count({
host: null,
})) === 0;
if (!noUsers && me == null) throw new Error('access denied');
const { account, secret } = await signup(ps.username, ps.password);