Fix signup limit
This commit is contained in:
parent
7a0bcd6773
commit
823e411fa6
1 changed files with 1 additions and 1 deletions
|
@ -460,7 +460,7 @@ export class UserModel extends Model<Partial<AttributesOnly<UserModel>>> {
|
|||
}
|
||||
|
||||
static countTotal () {
|
||||
return this.count()
|
||||
return UserModel.unscoped().count()
|
||||
}
|
||||
|
||||
static listForAdminApi (parameters: {
|
||||
|
|
Loading…
Reference in a new issue