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
326 B
Python

"""Oauth2 provider product extension"""
from django.db import models
from oauth2_provider.models import Application
from passbook.core.models import Provider
class OAuth2Provider(Provider):
"""Associate an OAuth2 Application with a Product"""
oauth2_app = models.ForeignKey(Application, on_delete=models.CASCADE)