Projet

Général

Profil

0002-forms-remove-old-mixin-68204.patch

Valentin Deniaud, 17 août 2022 10:04

Télécharger (1,03 ko)

Voir les différences:

Subject: [PATCH 2/2] forms: remove old mixin (#68204)

 src/authentic2_auth_fedict/forms.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
src/authentic2_auth_fedict/forms.py
14 14
# You should have received a copy of the GNU Affero General Public License
15 15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 16

  
17
from authentic2.apps.authenticators.forms import AuthenticatorFormMixin
18 17
from django import forms
19 18

  
20 19
from .models import FedictAuthenticator
21 20

  
22 21

  
23
class FedictAuthenticatorForm(AuthenticatorFormMixin, forms.ModelForm):
22
class FedictAuthenticatorForm(forms.ModelForm):
24 23
    class Meta:
25 24
        model = FedictAuthenticator
26 25
        exclude = ('name', 'slug', 'ou')
27
-