fix: prefills provider preference on filter

This commit is contained in:
2025-04-30 22:23:42 -05:00
parent bfd5f53d67
commit b23d8a2ba3
5 changed files with 59 additions and 11 deletions

26
src/Util/ProviderList.php Normal file
View File

@@ -0,0 +1,26 @@
<?php
namespace App\Util;
class ProviderList
{
public static $providers = [
'1337x',
'Comando',
'EZTV',
'ilCorSaRoNeRo',
'MagnetDL',
'MejorTorrent',
'RARBG',
'Rutor',
'Rutracker',
'ThePirateBay',
'Torrent9',
'TorrentGalaxy',
];
public static function getProviders()
{
return self::$providers;
}
}