/_info_card_ から使用していないクエリを削除 (#516)

This commit is contained in:
riku6460 2024-03-08 02:04:35 +09:00 committed by GitHub
parent 738df7626b
commit 67d236c201
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 7 deletions

View File

@ -776,17 +776,10 @@ export class ClientServerService {
reply.removeHeader('X-Frame-Options'); reply.removeHeader('X-Frame-Options');
const [originalUsersCount, originalNotesCount] = await Promise.all([
this.usersRepository.count({ where: { host: IsNull() }, cache: 1000 * 60 * 60 * 6 }), // 6 hours
this.notesRepository.count({ where: { userHost: IsNull() }, cache: 1000 * 60 * 60 * 6 }), // 6 hours
]);
return await reply.view('info-card', { return await reply.view('info-card', {
version: this.config.version, version: this.config.version,
host: this.config.host, host: this.config.host,
meta: meta, meta: meta,
originalUsersCount,
originalNotesCount,
}); });
}); });