This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/oauth_client/forms.py

16 lines
299 B
Python

"""passbook oauth_client forms"""
from django import forms
from passbook.oauth_client.models import OAuthSource
class OAuthSourceForm(forms.ModelForm):
"""OAuthSource Form"""
class Meta:
model = OAuthSource
# pylint: disable=modelform-uses-exclude
exclude = []