add register client uri

This commit is contained in:
Paul Marillonnet 2019-05-10 11:37:17 +02:00
parent a1202cbb84
commit 8c8246d6ce
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ from django.views.decorators.debug import sensitive_post_parameters
from authentic2.utils import import_module_or_class, redirect
from . import app_settings, decorators, profile_views, hooks
from .views import (logged_in, edit_profile, email_change, email_change_verify, profile,
authorization_rule_create_view)
authorization_rule_create_view, register_client_view)
SET_PASSWORD_FORM_CLASS = import_module_or_class(
app_settings.A2_REGISTRATION_SET_PASSWORD_FORM_CLASS)
@ -98,4 +98,5 @@ urlpatterns = [
url(r'^authz-rule/$',
authorization_rule_create_view,
name='a2-authz-rule-create'),
url(r'^register-client/$', register_client_view, name='a2-regiser-client'),
]