digitalfabrik/integreat-cms

View on GitHub
integreat_cms/cms/forms/users/user_email_form.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
from __future__ import annotations

import logging

from django.contrib.auth import get_user_model

from ..custom_model_form import CustomModelForm

logger = logging.getLogger(__name__)


class UserEmailForm(CustomModelForm):
    """
    Form for modifying user email addresses
    """

    class Meta:
        """
        This class contains additional meta configuration of the form class, see the :class:`django.forms.ModelForm`
        for more information.
        """

        #: The model of this :class:`django.forms.ModelForm`
        model = get_user_model()
        #: The fields of the model which should be handled by this form
        fields = ["email"]