Skip to content
Snippets Groups Projects
Verified Commit 4c3b9874 authored by Nik | Klampfradler's avatar Nik | Klampfradler Committed by Jonathan Weth
Browse files

Remove django-hattori and anonymisers

(cherry picked from commit 5f557a2e)
parent d7d9e0ca
No related branches found
No related tags found
1 merge request!733Prepare release 2.0rc6
from hattori.base import BaseAnonymizer, faker
from .models import Person
class PersonAnonymizer(BaseAnonymizer):
model = Person
attributes = [
("first_name", faker.first_name),
("last_name", faker.last_name),
("additional_name", ""),
("short_name", lambda **kwargs: faker.pystr(min_chars=3, max_chars=5, **kwargs)),
("street", faker.street_name),
("housenumber", faker.building_number),
("postal_code", faker.postcode),
("place", faker.city),
("phone_number", ""),
("mobile_number", ""),
("email", faker.email),
(
"date_of_birth",
lambda **kwargs: faker.date_of_birth(minimum_age=8, maximum_age=66, **kwargs),
),
("photo", ""),
]
......@@ -107,7 +107,6 @@ INSTALLED_APPS = [
"debug_toolbar",
"django_prometheus",
"django_select2",
"hattori",
"templated_email",
"html2text",
"django_otp.plugins.otp_totp",
......
This diff is collapsed.
......@@ -61,7 +61,6 @@ django-auth-ldap = { version = "^2.2", optional = true }
django-maintenance-mode = "^0.16.0"
django-ipware = "^3.0"
django-impersonate = "^1.4"
django-hattori = "^0.2"
psycopg2 = "^2.8"
django_select2 = "^7.1"
django-two-factor-auth = { version = "^1.12.1", extras = [ "yubikey", "phonenumbers", "call", "sms" ] }
......
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