django-allauth-cas/tests/example/provider.py
Aurélien Delobelle 76fd5ca344 initial
2017-07-25 18:31:42 +02:00

17 lines
353 B
Python

# -*- 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]