Files
animethemes-server/app/Features/AllowExternalProfileManagement.php
T

22 lines
423 B
PHP

<?php
declare(strict_types=1);
namespace App\Features;
use App\Enums\Auth\SpecialPermission;
use App\Models\Auth\User;
use Laravel\Pennant\Feature;
class AllowExternalProfileManagement
{
public function resolve(?User $user): bool
{
if ($user?->can(SpecialPermission::BYPASS_FEATURE_FLAGS->value)) {
return true;
}
return Feature::driver()->get(static::class, null);
}
}