forms: remove old mixin (#68204)

This commit is contained in:
Valentin Deniaud 2022-08-17 10:00:02 +02:00
parent badf4d6d68
commit 07eaca1b16
1 changed files with 1 additions and 2 deletions

View File

@ -14,13 +14,12 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from authentic2.apps.authenticators.forms import AuthenticatorFormMixin
from django import forms
from .models import FedictAuthenticator
class FedictAuthenticatorForm(AuthenticatorFormMixin, forms.ModelForm):
class FedictAuthenticatorForm(forms.ModelForm):
class Meta:
model = FedictAuthenticator
exclude = ('name', 'slug', 'ou')