fix: Delete all songs in a playlist

This commit is contained in:
Phan An 2019-08-29 21:49:16 +02:00
parent d84d863b09
commit 9a404149e5

View file

@ -10,7 +10,7 @@ class PlaylistSyncRequest extends Request
public function rules(): array
{
return [
'songs' => 'required',
'songs' => 'present|array',
];
}
}