Skip to content
Snippets Groups Projects
Verified Commit 0dbeda5c authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Merge branch 'master' into fix-changelog

parents 4bfcfc18 a6cecc09
No related branches found
No related tags found
1 merge request!732Fix and cleanup changelog
Pipeline #36135 passed
......@@ -26,6 +26,7 @@ Fixed
* Show link to imprint in footer
* Fix API for adding OAuth scopes in AppConfigs
* Removed wrong changelog section
* Deleting persons is possible again.
Removed
~~~~~~~
......
......@@ -9,3 +9,9 @@ def test_full_name():
_person = Person.objects.create(first_name="Jane", last_name="Doe")
assert _person.full_name == "Doe, Jane"
def test_delete():
_person = Person.objects.create(first_name="Jane", last_name="Doe")
_person.delete()
assert not Person.objects.filter(first_name="Jane", last_name="Doe").exists()
This diff is collapsed.
......@@ -66,7 +66,7 @@ django_select2 = "^7.1"
django-two-factor-auth = { version = "^1.12.1", extras = [ "yubikey", "phonenumbers", "call", "sms" ] }
django-yarnpkg = "^6.0"
django-material = "^1.6.0"
django-dynamic-preferences = "^1.9"
django-dynamic-preferences = "^1.11"
django_widget_tweaks = "^1.4.5"
django-filter = "^2.2.0"
django-templated-email = "^3.0.0"
......
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