mirror of
https://github.com/wowlikon/LiB.git
synced 2026-02-04 04:31:09 +00:00
Добавление catpcha при регистрации, фильтрация по количеству страниц
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
from .captcha import (
|
||||
limiter,
|
||||
cleanup_task,
|
||||
get_ip,
|
||||
require_captcha,
|
||||
active_challenges,
|
||||
redeem_tokens,
|
||||
challenges_by_ip,
|
||||
MAX_CHALLENGES_PER_IP,
|
||||
MAX_TOTAL_CHALLENGES,
|
||||
CHALLENGE_TTL,
|
||||
REDEEM_TTL,
|
||||
prng,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"limiter",
|
||||
"cleanup_task",
|
||||
"get_ip",
|
||||
"require_captcha",
|
||||
"active_challenges",
|
||||
"redeem_tokens",
|
||||
"challenges_by_ip",
|
||||
"MAX_CHALLENGES_PER_IP",
|
||||
"MAX_TOTAL_CHALLENGES",
|
||||
"CHALLENGE_TTL",
|
||||
"REDEEM_TTL",
|
||||
"prng",
|
||||
]
|
||||
Reference in New Issue
Block a user