mirror of
https://git.linux-kernel.at/oliver/ivatar.git
synced 2025-11-20 15:08:02 +00:00
First tool: Check OpenID/mail
This commit is contained in:
11
ivatar/tools/urls.py
Normal file
11
ivatar/tools/urls.py
Normal 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'),
|
||||
]
|
||||
Reference in New Issue
Block a user