django-allauth-cas/tests/example/provider.py

18 lines
353 B
Python
Raw Normal View History

2017-07-25 18:31:42 +02:00
# -*- coding: utf-8 -*-
from allauth.socialaccount.providers.base import ProviderAccount
from allauth_cas.providers import CASProvider
class ExampleCASAccount(ProviderAccount):
pass
class ExampleCASProvider(CASProvider):
id = 'theid'
name = 'The Provider'
account_class = ExampleCASAccount
provider_classes = [ExampleCASProvider]