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_provider/models.py

13 lines
300 B
Python

"""Oauth2 provider product extension"""
from oauth2_provider.models import AbstractApplication
from passbook.core.models import Provider
class OAuth2Provider(Provider, AbstractApplication):
"""Associate an OAuth2 Application with a Product"""
def __str__(self):
return self.name