diff --git a/gregsite/settings/base.py b/gregsite/settings/base.py index a4e14bb70c6df7c63f278e36861fa86e54120504..4661b7ba0699a48c7151ed0e3f0909bb01e32141 100644 --- a/gregsite/settings/base.py +++ b/gregsite/settings/base.py @@ -98,6 +98,13 @@ REST_FRAMEWORK = { ), "DEFAULT_PERMISSION_CLASSES": ("rest_framework.permissions.IsAuthenticated",), "DEFAULT_SCHEMA_CLASS": "drf_spectacular.openapi.AutoSchema", + # Rate limit settings of invite endpoint + "DEFAULT_THROTTLE_CLASSES": [ + "rest_framework.throttling.AnonRateThrottle", + ], + "DEFAULT_THROTTLE_RATES": { + "anon": "10/minute", + }, } SPECTACULAR_SETTINGS = { @@ -293,16 +300,6 @@ INTERNAL_RK_PREFIX = "no.{instance}.greg".format(instance=INSTANCE_NAME) FEIDE_SOURCE = "feide" -# Rate limit settings of invite endpoint -REST_FRAMEWORK = { - "DEFAULT_THROTTLE_CLASSES": [ - "rest_framework.throttling.AnonRateThrottle", - ], - "DEFAULT_THROTTLE_RATES": { - "anon": "100/day", - }, -} - # Used by the OU import from orgreg to distinguish the OuIdentifiers from others ORGREG_SOURCE = "orgreg"