mirror of
https://github.com/koel/koel
synced 2024-11-14 00:17:13 +00:00
14 lines
229 B
PHP
14 lines
229 B
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\Playlist;
|
|
use App\Models\User;
|
|
|
|
class PlaylistPolicy
|
|
{
|
|
public function owner(User $user, Playlist $playlist): bool
|
|
{
|
|
return $user->id === $playlist->user_id;
|
|
}
|
|
}
|