From 0ef5eb24d819a1592a965dc662f7205e7294ec96 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 25 Apr 2021 10:44:51 +0300 Subject: [PATCH] Enable migration for hosted --- app/Models/User.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/Models/User.php b/app/Models/User.php index 9c0550d05ae1..b7255d721b86 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -496,11 +496,6 @@ class User extends Authenticatable 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; } }