2

is there a way to disable "activation" and "throttle" check in sentinel?

Thank you for any help you can provide for this.

Shakti
  • 189
  • 1
  • 3
  • 15

2 Answers2

4

Just find a checkpoints array on sentinel config and comment it.

'checkpoints' => [

    //'throttle',
    //'activation',

],
IvanY
  • 143
  • 4
0

try it :

Open file Kernel.php from "app/Http/"

and comment it

  'api' => [
        //'throttle:60,1',
        'bindings',
    ],
Sajjad Alipour
  • 184
  • 1
  • 6