From 338881b7eced1dfd7dfd6f070fd6fd140e678261 Mon Sep 17 00:00:00 2001 From: flashwave Date: Fri, 6 Oct 2023 22:50:32 +0000 Subject: [PATCH] Allow anyone to submit torrents for approval. --- src/Users/UserInfo.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Users/UserInfo.php b/src/Users/UserInfo.php index d9b89f3..37f7e24 100644 --- a/src/Users/UserInfo.php +++ b/src/Users/UserInfo.php @@ -79,9 +79,7 @@ readonly class UserInfo { } public function canCreateTorrents(): bool { - return $this->isFlash() - || $this->id === '32' - || $this->id === '145'; + return true; } public function canApproveTorrents(): bool {