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-pratic/src/authentic2_pratic/__init__.py

16 lines
394 B
Python

__version__ = '1.0.0b1'
class Plugin(object):
def get_before_urls(self):
from . import urls
return urls.urlpatterns
def get_apps(self):
return [__name__]
def get_authentication_backends(self):
return ['authentic2_pratic.backends.PraticBackend']
def get_auth_frontends(self):
return ['authentic2_pratic.auth_frontends.PraticFrontend']