Merge branch 'master' into develop

This commit is contained in:
syuilo 2020-03-31 08:08:22 +09:00
commit 10356b4041
4 changed files with 10 additions and 5 deletions

View file

@ -108,6 +108,7 @@ UIからアプリを作成する画面 (`/dev/apps`) は廃止されました、
12.21.0 (2020/02/23) 12.21.0 (2020/02/23)
------------------- -------------------
### ✨Improvements ### ✨Improvements
* タイムラインに挿入されるおすすめノートに自分がリアクションしたものは含めないように
* ノートのメニューに詳細ページへのリンクを追加 * ノートのメニューに詳細ページへのリンクを追加
* UIの調整 * UIの調整

View file

@ -22,8 +22,6 @@ export async function signup(username: User['username'], password: UserProfile['
throw new Error('INVALID_PASSWORD'); throw new Error('INVALID_PASSWORD');
} }
const usersCount = await Users.count({});
// Generate hash of password // Generate hash of password
const salt = await bcrypt.genSalt(8); const salt = await bcrypt.genSalt(8);
const hash = await bcrypt.hash(password, salt); const hash = await bcrypt.hash(password, salt);
@ -76,7 +74,9 @@ export async function signup(username: User['username'], password: UserProfile['
usernameLower: username.toLowerCase(), usernameLower: username.toLowerCase(),
host: toPunyNullable(host), host: toPunyNullable(host),
token: secret, token: secret,
isAdmin: usersCount === 0, isAdmin: (await Users.count({
host: null,
})) === 0,
})); }));
await transactionalEntityManager.save(new UserKeypair({ await transactionalEntityManager.save(new UserKeypair({

View file

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

View file

@ -137,7 +137,9 @@ export default define(meta, async (ps, me) => {
category: e.category, category: e.category,
url: e.url, url: e.url,
})), })),
requireSetup: (await Users.count({})) === 0, requireSetup: (await Users.count({
host: null,
})) === 0,
enableEmail: instance.enableEmail, enableEmail: instance.enableEmail,
enableTwitterIntegration: instance.enableTwitterIntegration, enableTwitterIntegration: instance.enableTwitterIntegration,