Fix rate limitation
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
0c4449eafd
commit
31866fa99f
|
|
@ -105,7 +105,7 @@ class RegisterController extends Controller {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @PublicPage
|
* @PublicPage
|
||||||
* @AnonRateThrottle(limit=5, period=1)
|
* @AnonRateThrottle(limit=5, period=300)
|
||||||
*
|
*
|
||||||
* @param string $email
|
* @param string $email
|
||||||
* @return TemplateResponse
|
* @return TemplateResponse
|
||||||
|
|
@ -162,7 +162,7 @@ class RegisterController extends Controller {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @PublicPage
|
* @PublicPage
|
||||||
* @AnonRateThrottle(limit=5, period=1)
|
* @AnonRateThrottle(limit=5, period=300)
|
||||||
*
|
*
|
||||||
* @param string $secret
|
* @param string $secret
|
||||||
* @param string $token
|
* @param string $token
|
||||||
|
|
@ -221,7 +221,7 @@ class RegisterController extends Controller {
|
||||||
/**
|
/**
|
||||||
* @PublicPage
|
* @PublicPage
|
||||||
* @UseSession
|
* @UseSession
|
||||||
* @AnonRateThrottle(limit=5, period=1)
|
* @AnonRateThrottle(limit=5, period=300)
|
||||||
*
|
*
|
||||||
* @param string $secret
|
* @param string $secret
|
||||||
* @param string $token
|
* @param string $token
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue