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.
2019-07-05 13:21:48 +00:00
|
|
|
"""passbook OAuth2 Provider Forms"""
|
2018-11-26 21:40:10 +00:00
|
|
|
|
|
|
|
from django import forms
|
|
|
|
|
2019-10-07 14:33:48 +00:00
|
|
|
from passbook.providers.oauth.models import OAuth2Provider
|
2018-11-26 21:40:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OAuth2ProviderForm(forms.ModelForm):
|
|
|
|
"""OAuth2 Provider form"""
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = OAuth2Provider
|
2019-12-31 11:51:16 +00:00
|
|
|
fields = [
|
|
|
|
"name",
|
|
|
|
"redirect_uris",
|
|
|
|
"client_type",
|
|
|
|
"authorization_grant_type",
|
|
|
|
"client_id",
|
|
|
|
"client_secret",
|
|
|
|
]
|