feat: add Podcast as a searchable entity to import

This commit is contained in:
Phan An 2024-06-08 18:22:15 +02:00
parent e1448ce909
commit afc13f808c

View file

@ -5,6 +5,7 @@ namespace App\Console\Commands;
use App\Models\Album;
use App\Models\Artist;
use App\Models\Playlist;
use App\Models\Podcast;
use App\Models\Song;
use Illuminate\Console\Command;
@ -15,6 +16,7 @@ class ImportSearchableEntitiesCommand extends Command
Album::class,
Artist::class,
Playlist::class,
Podcast::class,
];
protected $signature = 'koel:search:import';