1515``SECURITY_URL_PREFIX `` Specifies the URL prefix for the
1616 Flask-Security blueprint. Defaults to
1717 ``None ``.
18- ``SECURITY_FLASH_MESSAGES `` Specifies wether or not to flash
18+ ``SECURITY_FLASH_MESSAGES `` Specifies whether or not to flash
1919 messages during security procedures.
2020 Defaults to ``True ``.
2121``SECURITY_PASSWORD_HASH `` Specifies the password hash algorithm to
@@ -69,37 +69,37 @@ URLs and Views
6969``SECURITY_CONFIRM_ERROR_VIEW `` Specifies the view to redirect to if a
7070 confirmation error occurs. This value can be set
7171 to a URL or an endpoint name. If this value is
72- ``None `` the user is presented the default view
72+ ``None ``, the user is presented the default view
7373 to resend a confirmation link. Defaults to
7474 ``None ``.
7575``SECURITY_POST_REGISTER_VIEW `` Specifies the view to redirect to after a user
7676 successfully registers. This value can be set to
7777 a URL or an endpoint name. If this value is
78- ``None `` the user is redirected to the value of
78+ ``None ``, the user is redirected to the value of
7979 ``SECURITY_POST_LOGIN_VIEW ``. Defaults to
8080 ``None ``.
8181``SECURITY_POST_CONFIRM_VIEW `` Specifies the view to redirect to after a user
8282 successfully confirms their email. This value
8383 can be set to a URL or an endpoint name. If this
84- value is ``None `` the user is redirected to the
84+ value is ``None ``, the user is redirected to the
8585 value of ``SECURITY_POST_LOGIN_VIEW ``. Defaults
8686 to ``None ``.
8787``SECURITY_POST_RESET_VIEW `` Specifies the view to redirect to after a user
8888 successfully resets their password. This value
8989 can be set to a URL or an endpoint name. If this
90- value is ``None `` the user is redirected to the
90+ value is ``None ``, the user is redirected to the
9191 value of ``SECURITY_POST_LOGIN_VIEW ``. Defaults
9292 to ``None ``.
9393``SECURITY_POST_CHANGE_VIEW `` Specifies the view to redirect to after a user
9494 successfully changes their password. This value
9595 can be set to a URL or an endpoint name. If this
96- value is ``None `` the user is redirected to the
96+ value is ``None ``, the user is redirected to the
9797 value of ``SECURITY_POST_LOGIN_VIEW ``. Defaults
9898 to ``None ``.
9999``SECURITY_UNAUTHORIZED_VIEW `` Specifies the view to redirect to if a user
100100 attempts to access a URL/endpoint that they do
101101 not have permission to access. If this value is
102- ``None `` the user is presented with a default
102+ ``None ``, the user is presented with a default
103103 HTTP 403 response. Defaults to ``None ``.
104104=============================== ================================================
105105
@@ -144,7 +144,7 @@ Feature Flags
144144========================= ======================================================
145145``SECURITY_CONFIRMABLE `` Specifies if users are required to confirm their email
146146 address when registering a new account. If this value
147- is `True ` Flask-Security creates an endpoint to handle
147+ is `True `, Flask-Security creates an endpoint to handle
148148 confirmations and requests to resend confirmation
149149 instructions. The URL for this endpoint is specified
150150 by the ``SECURITY_CONFIRM_URL `` configuration option.
@@ -158,11 +158,11 @@ Feature Flags
158158 specified by the ``SECURITY_RESET_URL `` configuration
159159 option. Defaults to ``False ``.
160160``SECURITY_TRACKABLE `` Specifies if Flask-Security should track basic user
161- login statistics. If set to ``True `` ensure your
161+ login statistics. If set to ``True ``, ensure your
162162 models have the required fields/attribues. Defaults to
163163 ``False ``
164164``SECURITY_PASSWORDLESS `` Specifies if Flask-Security should enable the
165- passwordless login feature. If set to ``True `` users
165+ passwordless login feature. If set to ``True ``, users
166166 are not required to enter a password to login but are
167167 sent an email with a login link. This feature is
168168 experimental and should be used with caution. Defaults
0 commit comments