Shakti
Shakti

Reputation: 189

Laravel 5 sentinel: How can disable "activation" and "throttle" checkpoints?

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

Answers (2)

Sajjad Alipour
Sajjad Alipour

Reputation: 194

try it :

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

and comment it

  'api' => [
        //'throttle:60,1',
        'bindings',
    ],

Upvotes: 0

IvanY
IvanY

Reputation: 153

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

'checkpoints' => [

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

],

Upvotes: 4

Related Questions