This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
authentic2-idp-oauth2/authentic2_idp_oauth2/models.py

11 lines
286 B
Python

from django.utils.translation import ugettext_lazy as _
from provider.oauth2.models import Client
from authentic2.models import LogoutUrlAbstract
class A2Client(LogoutUrlAbstract, Client):
class Meta:
verbose_name = _('client')
verbose_name_plural = _('clients')