fix invalid token
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 49s
Tests / PHPUnit (push) Successful in 1m20s

This commit is contained in:
root
2026-08-30 21:10:35 -04:00
parent 140be9922d
commit 332b0d1007
9 changed files with 217 additions and 112 deletions
+2 -2
View File
@@ -85,12 +85,12 @@ class UserModel extends Model
}
/**
* Get unverified users created more than 2 minutes ago.
* Get unverified users created more than 15 minutes ago.
*/
public function getUnverifiedUsers()
{
return $this->where('is_verified', 0)
->where('created_at <', date('Y-m-d H:i:s', time() - 120))
->where('created_at <', date('Y-m-d H:i:s', time() - 15 * 60))
->findAll();
}