winter/modules/backend/models/UserThrottle.php

34 lines
728 B
PHP

<?php namespace Backend\Models;
use Config;
use October\Rain\Auth\Models\Throttle as ThrottleBase;
/**
* Administrator throttling model
*
* @package october\backend
* @author Alexey Bobkov, Samuel Georges
*/
class UserThrottle extends ThrottleBase
{
/**
* @var string The database table used by the model.
*/
protected $table = 'backend_user_throttle';
/**
* @var array Relations
*/
public $belongsTo = [
'user' => User::class
];
public function __construct()
{
parent::__construct();
static::$attemptLimit = Config::get('auth.throttle.attemptLimit', 5);
static::$suspensionTime = Config::get('auth.throttle.suspensionTime', 15);
}
}