add: ability to hide adult content

- closes #4866
- closes #4867
This commit is contained in:
HDVinnie
2025-09-17 14:35:00 -04:00
committed by GitHub
parent 8231af0016
commit a1e45a4dca
17 changed files with 224 additions and 32 deletions
+2
View File
@@ -55,6 +55,7 @@ use Illuminate\Database\Eloquent\Model;
* @property ?string $standalone_css
* @property bool $show_poster
* @property bool $unbookmark_torrents_on_completion
* @property bool $show_adult_content
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
*/
@@ -124,6 +125,7 @@ class UserSetting extends Model
'torrent_filters' => 'bool',
'show_poster' => 'bool',
'unbookmark_torrents_on_completion' => 'bool',
'show_adult_content' => 'bool',
];
}