Panel ACL in local development

Is there a way to disable the ability for any user to access a panel when running locally and instead have the production behaviour consistently?
8 Replies
Illizian
IllizianOP4w ago
also; FWIW, that seems like a very bizarre decision. is there a reason behind the choice for it to act differently locally?
Mohamed Ayaou
Mohamed Ayaou4w ago
Yes. for devs experience just switch the environment in your .env file to production and that's it
Illizian
IllizianOP4w ago
Hard disagree. How are you meant to test ACL if it just ignores it
Mohamed Ayaou
Mohamed Ayaou4w ago
Just set environment to production
Illizian
IllizianOP4w ago
An---yway.... I'll await confirmation that this definitely can't be disabled and then PR it in haha
Lara Zeus
Lara Zeus4w ago
abort_if(
$user instanceof FilamentUser ?
(! $user->canAccessPanel($panel)) :
(config('app.env') !== 'local'),
403,
);
abort_if(
$user instanceof FilamentUser ?
(! $user->canAccessPanel($panel)) :
(config('app.env') !== 'local'),
403,
);
I think this means only check for the env if the user model not an instance of FilamentUser
Illizian
IllizianOP4w ago
Yeah, if it's a FilamentUser, it uses the method you have to implement, but if it's not then it falls through to app env. I think that app.env is an anti pattern, honestly. I might open a PR purely to open it up to a conversation. Thanks for checking. Could you link me to that?
Lara Zeus
Lara Zeus4w ago
Filament\Http\Middleware\Authenticate:32

Did you find this page helpful?