better comment

This commit is contained in:
tamaina 2024-07-17 18:01:03 +09:00
parent 09b2e71e62
commit 41883c451d
1 changed files with 3 additions and 3 deletions

View File

@ -36,9 +36,9 @@ export class AccountUpdateService implements OnModuleInit {
@bindThis @bindThis
/** /**
* * Deliver account update to followers
* @param userId ID * @param userId user id
* @param isKeyUpdation Ed25519キーの作成など公開鍵のアップデートによる呼び出しか trueにするとメインキーを使うようになる * @param deliverKey optional. Private key to sign the deliver.
*/ */
public async publishToFollowers(userId: MiUser['id'], deliverKey?: PrivateKeyWithPem) { public async publishToFollowers(userId: MiUser['id'], deliverKey?: PrivateKeyWithPem) {
const user = await this.usersRepository.findOneBy({ id: userId }); const user = await this.usersRepository.findOneBy({ id: userId });