Enable migration for hosted

This commit is contained in:
Hillel Coren 2021-04-25 10:44:51 +03:00
parent b645356122
commit 0ef5eb24d8

View File

@ -496,11 +496,6 @@ class User extends Authenticatable
public function eligibleForMigration() public function eligibleForMigration()
{ {
// Not ready to show to hosted users
if (Utils::isNinjaProd()) {
return false;
}
return is_null($this->public_id) || $this->public_id == 0; return is_null($this->public_id) || $this->public_id == 0;
} }
} }