We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac9459c commit 1f7d270Copy full SHA for 1f7d270
rest_registration/settings_fields.py
@@ -181,7 +181,15 @@ def __new__(
181
to create the activation link for newly registered user.
182
"""),
183
),
184
- Field('REGISTER_VERIFICATION_ONE_TIME_USE', default=False),
+ Field(
185
+ 'REGISTER_VERIFICATION_ONE_TIME_USE',
186
+ default=False,
187
+ help=dedent("""\
188
+ This setting ensures the activation link can only be used once.
189
+ If REGISTER_VERIFICATION_AUTO_LOGIN is enabled, the link could auto-login
190
+ the user, which may not be desired.
191
+ """),
192
+ ),
193
Field(
194
'REGISTER_VERIFICATION_EMAIL_TEMPLATES',
195
default={
0 commit comments