mirror of
https://github.com/pierre42100/ComunicAPI
synced 2025-06-19 00:25:18 +00:00
Limit the number of account / hour / ip
This commit is contained in:
@ -21,6 +21,7 @@ class APILimits {
|
||||
* Actions list
|
||||
*/
|
||||
const ACTION_LOGIN_FAILED = "failed_login";
|
||||
const ACTION_CREATE_ACCOUNT = "create_account";
|
||||
|
||||
/**
|
||||
* Actions configruation
|
||||
@ -30,7 +31,12 @@ class APILimits {
|
||||
//Login failed
|
||||
self::ACTION_LOGIN_FAILED => array(
|
||||
"limit" => 10
|
||||
)
|
||||
),
|
||||
|
||||
//Create an account
|
||||
self::ACTION_CREATE_ACCOUNT => array(
|
||||
"limit" => 10
|
||||
),
|
||||
);
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user