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-beid/src/authentic2_beid/urls.py

13 lines
313 B
Python

from django.conf.urls import patterns, url
from .views import *
urlpatterns = patterns('',
url(r'^$',
handle_authentication,
name='beid_signin'),
url(r'^add_beid/', add_beid, name='add_beid'),
url(r'^delete_beid/(?P<certificate_pk>\d+)/$',
delete_beid, name='delete_beid')
)