mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(core): Revert isPending
check on the user entity (#5571)
This commit is contained in:
parent
ea2035b510
commit
a19ec6ac94
|
@ -111,9 +111,6 @@ export class User extends AbstractEntity implements IUser {
|
||||||
@AfterLoad()
|
@AfterLoad()
|
||||||
@AfterUpdate()
|
@AfterUpdate()
|
||||||
computeIsPending(): void {
|
computeIsPending(): void {
|
||||||
this.isPending =
|
this.isPending = this.password === null;
|
||||||
this.globalRole?.name === 'owner' && this.globalRole.scope === 'global'
|
|
||||||
? false
|
|
||||||
: this.password === null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue