Skip to content
Snippets Groups Projects
Verified Commit e23d3151 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Work around django-two-factor-auth API breakage in 1.14.0

parent 95cf0825
No related branches found
No related tags found
1 merge request!1052Resolve "django-two-factor-auth 1.14.0 breaks API"
Pipeline #75625 passed
...@@ -19,6 +19,8 @@ Changed ...@@ -19,6 +19,8 @@ Changed
~~~~~~~ ~~~~~~~
* Restructure group page and show more information about members. * Restructure group page and show more information about members.
* django-two-factor-auth >= 1.14.0 is now required due to a
backwards-incompatible breakage in that library
Fixed Fixed
~~~~~~~ ~~~~~~~
......
...@@ -144,6 +144,7 @@ INSTALLED_APPS = [ ...@@ -144,6 +144,7 @@ INSTALLED_APPS = [
"dynamic_preferences.users.apps.UserPreferencesConfig", "dynamic_preferences.users.apps.UserPreferencesConfig",
"impersonate", "impersonate",
"two_factor", "two_factor",
"two_factor.plugins.phonenumber",
"material", "material",
"ckeditor", "ckeditor",
"ckeditor_uploader", "ckeditor_uploader",
......
{# -*- engine:django -*- #} {# -*- engine:django -*- #}
{% extends "two_factor/_base_focus.html" %} {% extends "two_factor/_base_focus.html" %}
{% load i18n two_factor account socialaccount %} {% load i18n phonenumber account socialaccount %}
{% block browser_title %} {% block browser_title %}
{% trans "Login" %} {% trans "Login" %}
......
{% extends "two_factor/_base_focus.html" %} {% extends "two_factor/_base_focus.html" %}
{% load i18n two_factor %} {% load i18n phonenumber %}
{% block browser_title %} {% block browser_title %}
{% trans "Account Security" %} {% trans "Account Security" %}
......
...@@ -71,7 +71,7 @@ django-ipware = "^4.0" ...@@ -71,7 +71,7 @@ django-ipware = "^4.0"
django-impersonate = "^1.4" django-impersonate = "^1.4"
psycopg2 = "^2.8" psycopg2 = "^2.8"
django_select2 = "^7.1" django_select2 = "^7.1"
django-two-factor-auth = { version = "^1.12.1", extras = [ "yubikey", "phonenumbers", "call", "sms" ] } django-two-factor-auth = { version = "^1.14.0", extras = [ "yubikey", "phonenumbers", "call", "sms" ] }
django-yarnpkg = "^6.0" django-yarnpkg = "^6.0"
django-material = "^1.6.0" django-material = "^1.6.0"
django-dynamic-preferences = "^1.11" django-dynamic-preferences = "^1.11"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment