fix: should use invite limit cycle to calculate invite/limit

This commit is contained in:
Lhc_fl 2024-10-22 18:44:15 +08:00
parent 24ecef80e7
commit 6aaeda13b9
No known key found for this signature in database
GPG key ID: 3A10435B21EDC6AA

View file

@ -49,7 +49,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
const policies = await this.roleService.getUserPolicies(me.id);
const count = policies.inviteLimit ? await this.registrationTicketsRepository.countBy({
id: MoreThan(this.idService.gen(Date.now() - (policies.inviteExpirationTime * 60 * 1000))),
id: MoreThan(this.idService.gen(Date.now() - (policies.inviteLimitCycle * 60 * 1000))),
createdById: me.id,
}) : null;