Reputation: 189
is there a way to disable "activation" and "throttle" check in sentinel?
Thank you for any help you can provide for this.
Upvotes: 2
Views: 2657
Reputation: 194
try it :
Open file Kernel.php from "app/Http/"
and comment it
'api' => [
//'throttle:60,1',
'bindings',
],
Upvotes: 0
Reputation: 153
Just find a checkpoints array on sentinel config and comment it.
'checkpoints' => [
//'throttle',
//'activation',
],
Upvotes: 4