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/channels/out_oauth/forms.py

22 lines
440 B
Python

"""passbook OAuth2 Outlet Forms"""
from django import forms
from passbook.channels.out_oauth.models import OAuth2Outlet
class OAuth2OutletForm(forms.ModelForm):
"""OAuth2 Outlet form"""
class Meta:
model = OAuth2Outlet
fields = [
"name",
"redirect_uris",
"client_type",
"authorization_grant_type",
"client_id",
"client_secret",
]