mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
feat: add Podcast as a searchable entity to import
This commit is contained in:
parent
e1448ce909
commit
afc13f808c
1 changed files with 2 additions and 0 deletions
|
@ -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';
|
||||
|
|
Loading…
Reference in a new issue