Browse Source

Clean up

pull/4058/head
Thomas Kaul 9 months ago
parent
commit
4fd5adc0cf
  1. 4
      apps/api/src/app/admin/admin.service.ts

4
apps/api/src/app/admin/admin.service.ts

@ -519,7 +519,7 @@ export class AdminService {
return response; return response;
} }
private async countUsersWithAnalytics(): Promise<number> { private async countUsersWithAnalytics() {
let where: Prisma.UserWhereInput; let where: Prisma.UserWhereInput;
if (this.configurationService.get('ENABLE_FEATURE_SUBSCRIPTION')) { if (this.configurationService.get('ENABLE_FEATURE_SUBSCRIPTION')) {
@ -530,7 +530,7 @@ export class AdminService {
}; };
} }
return await this.prismaService.user.count({ return this.prismaService.user.count({
where where
}); });
} }

Loading…
Cancel
Save