First tool: Check OpenID/mail

This commit is contained in:
Oliver Falk
2018-07-03 11:56:14 +02:00
parent 78600c1670
commit cb99a0c678
10 changed files with 261 additions and 7 deletions

11
ivatar/tools/urls.py Normal file
View File

@@ -0,0 +1,11 @@
'''
ivatar/tools URL configuration
'''
from django.conf.urls import url
from . views import CheckView, CheckDomainView
urlpatterns = [ # pylint: disable=invalid-name
url('check/', CheckView.as_view(), name='tools_check'),
url('check_domain/', CheckDomainView.as_view(), name='tools_check_domain'),
]