Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions isic/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,11 @@
ACCOUNT_LOGOUT_REDIRECT_URL = "/"
ACCOUNT_SIGNUP_FORM_CLASS = "resonant_utils.allauth.FullNameSignupForm"

# Signups are closed while an automated signup campaign is abusing the confirmation
# emails. An amount of 0 rejects every POST to the signup view; this dict is merged
# into allauth's defaults, so the other rate limits are unaffected.
ACCOUNT_RATE_LIMITS = {"signup": "0/m/ip"}
Comment thread
danlamanna marked this conversation as resolved.

SOCIALACCOUNT_PROVIDERS: dict[str, dict[str, Any]] = {}

# The presence of "google" inside SOCIALACCOUNT_PROVIDERS causes the GUI to display
Expand Down