forked from nutomic/lemmy
A better login cooldown.
This commit is contained in:
parent
b3ce400da0
commit
2ebdfc8425
1 changed files with 2 additions and 2 deletions
|
@ -20,8 +20,8 @@ use api::site::*;
|
|||
|
||||
const RATE_LIMIT_MESSAGES: i32 = 30;
|
||||
const RATE_LIMIT_PER_SECOND: i32 = 60;
|
||||
const RATE_LIMIT_REGISTER_MESSAGES: i32 = 1;
|
||||
const RATE_LIMIT_REGISTER_PER_SECOND: i32 = 60;
|
||||
const RATE_LIMIT_REGISTER_MESSAGES: i32 = 3;
|
||||
const RATE_LIMIT_REGISTER_PER_SECOND: i32 = 60*3;
|
||||
|
||||
|
||||
/// Chat server sends this messages to session
|
||||
|
|
Loading…
Reference in a new issue