fix meta in SignupService
This commit is contained in:
parent
e6a78d8027
commit
c31ee21485
1 changed files with 1 additions and 2 deletions
|
@ -58,7 +58,6 @@ export class SignupService {
|
||||||
}) {
|
}) {
|
||||||
const { username, password, passwordHash, host, reason } = opts;
|
const { username, password, passwordHash, host, reason } = opts;
|
||||||
let hash = passwordHash;
|
let hash = passwordHash;
|
||||||
const instance = await this.metaService.fetch(true);
|
|
||||||
|
|
||||||
// Validate username
|
// Validate username
|
||||||
if (!this.userEntityService.validateLocalUsername(username)) {
|
if (!this.userEntityService.validateLocalUsername(username)) {
|
||||||
|
@ -118,7 +117,7 @@ export class SignupService {
|
||||||
let account!: MiUser;
|
let account!: MiUser;
|
||||||
let defaultApproval = false;
|
let defaultApproval = false;
|
||||||
|
|
||||||
if (!instance.approvalRequiredForSignup) defaultApproval = true;
|
if (!this.meta.approvalRequiredForSignup) defaultApproval = true;
|
||||||
|
|
||||||
// Start transaction
|
// Start transaction
|
||||||
await this.db.transaction(async transactionalEntityManager => {
|
await this.db.transaction(async transactionalEntityManager => {
|
||||||
|
|
Loading…
Reference in a new issue