udata 12.0.0__py3-none-any.whl → 12.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of udata might be problematic. Click here for more details.
- udata/auth/__init__.py +4 -0
- udata/settings.py +1 -1
- udata/static/chunks/{10.8ca60413647062717b1e.js → 10.471164b2a9fe15614797.js} +3 -3
- udata/static/chunks/{10.8ca60413647062717b1e.js.map → 10.471164b2a9fe15614797.js.map} +1 -1
- udata/static/chunks/{11.b6f741fcc366abfad9c4.js → 11.51d706fb9521c16976bc.js} +3 -3
- udata/static/chunks/{11.b6f741fcc366abfad9c4.js.map → 11.51d706fb9521c16976bc.js.map} +1 -1
- udata/static/chunks/{13.2d06442dd9a05d9777b5.js → 13.f29411b06be1883356a3.js} +2 -2
- udata/static/chunks/{13.2d06442dd9a05d9777b5.js.map → 13.f29411b06be1883356a3.js.map} +1 -1
- udata/static/chunks/{17.e8e4caaad5cb0cc0bacc.js → 17.3bd0340930d4a314ce9c.js} +2 -2
- udata/static/chunks/{17.e8e4caaad5cb0cc0bacc.js.map → 17.3bd0340930d4a314ce9c.js.map} +1 -1
- udata/static/chunks/{19.f03a102365af4315f9db.js → 19.8da42e8359d72afc2618.js} +3 -3
- udata/static/chunks/{19.f03a102365af4315f9db.js.map → 19.8da42e8359d72afc2618.js.map} +1 -1
- udata/static/chunks/{8.778091d55cd8ea39af6b.js → 8.54e44b102164ae5e7a67.js} +2 -2
- udata/static/chunks/{8.778091d55cd8ea39af6b.js.map → 8.54e44b102164ae5e7a67.js.map} +1 -1
- udata/static/chunks/{9.033d7e190ca9e226a5d0.js → 9.07515e5187f475bce828.js} +3 -3
- udata/static/chunks/{9.033d7e190ca9e226a5d0.js.map → 9.07515e5187f475bce828.js.map} +1 -1
- udata/static/common.js +1 -1
- udata/static/common.js.map +1 -1
- {udata-12.0.0.dist-info → udata-12.0.1.dist-info}/METADATA +1 -1
- {udata-12.0.0.dist-info → udata-12.0.1.dist-info}/RECORD +24 -24
- {udata-12.0.0.dist-info → udata-12.0.1.dist-info}/WHEEL +0 -0
- {udata-12.0.0.dist-info → udata-12.0.1.dist-info}/entry_points.txt +0 -0
- {udata-12.0.0.dist-info → udata-12.0.1.dist-info}/licenses/LICENSE +0 -0
- {udata-12.0.0.dist-info → udata-12.0.1.dist-info}/top_level.txt +0 -0
udata/auth/__init__.py
CHANGED
|
@@ -56,6 +56,10 @@ def init_app(app):
|
|
|
56
56
|
app.config.setdefault(
|
|
57
57
|
"SECURITY_POST_CONFIRM_VIEW", app.config["CDATA_BASE_URL"] + "?flash=post_confirm"
|
|
58
58
|
)
|
|
59
|
+
app.config.setdefault(
|
|
60
|
+
"SECURITY_CONFIRM_ERROR_VIEW",
|
|
61
|
+
app.config["CDATA_BASE_URL"] + "?flash=confirm_error",
|
|
62
|
+
)
|
|
59
63
|
|
|
60
64
|
security.init_app(
|
|
61
65
|
app,
|
udata/settings.py
CHANGED
|
@@ -110,7 +110,7 @@ class Defaults(object):
|
|
|
110
110
|
SECURITY_REDIRECT_BEHAVIOR = "spa"
|
|
111
111
|
# SECURITY_POST_OAUTH_LOGIN_VIEW = "" # SECURITY_OAUTH_ENABLE is disabled
|
|
112
112
|
# SECURITY_LOGIN_ERROR_VIEW = "" # We don't follow the redirects since we do JSON POST requests during login
|
|
113
|
-
# SECURITY_CONFIRM_ERROR_VIEW = "" # Manually changed in `confirm_change_email`
|
|
113
|
+
# SECURITY_CONFIRM_ERROR_VIEW = "" # Manually changed in `confirm_change_email` and set at runtime. See :SecurityPostConfirmViewAtRuntime
|
|
114
114
|
# SECURITY_POST_CHANGE_EMAIL_VIEW = "" # We don't follow the redirects since we do JSON POST requests during change email
|
|
115
115
|
# SECURITY_CHANGE_EMAIL_ERROR_VIEW = "" # We don't follow the redirects since we do JSON POST requests during change email
|
|
116
116
|
# SECURITY_POST_CONFIRM_VIEW = "" # Set at runtime. See :SecurityPostConfirmViewAtRuntime
|