Skip to content
Discussion options

You must be logged in to vote

We don't have a built in way to specifically disable it. but you can use overly big limits in https://github.com/Laravel-Backpack/CRUD/blob/4c7030524540d34ca32db367a48ae03d34c14505/src/config/backpack/base.php#L98

If you want to make those configs environment dependent, you can can just use 'password_recovery_throttle_access' => env('PASSWORD_RECOVERY_THROTTLE_ACCESS', '3,10').

It's not a good practice to "comment code" to work only on local. That's bound for disaster if you forget and commit that to prod. Either have a boolean setting to specifically enable/disable something, or use stupid big limits while testing, without affecting other environments.

Let me know if that helps.

Cheers

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@realtebo
Comment options

Answer selected by realtebo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants