From e75aee19be9a1bb032c9a9b4b6ebd5dd2701a9c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 6 Jul 2018 15:39:13 +0200 Subject: [PATCH] hobo: create idp_registration_url for template-compatibility (#25116) This helps in sharing a login/register block with classic django applications. --- wcs/ctl/check_hobos.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wcs/ctl/check_hobos.py b/wcs/ctl/check_hobos.py index 27e09668..f9ce79f6 100644 --- a/wcs/ctl/check_hobos.py +++ b/wcs/ctl/check_hobos.py @@ -391,6 +391,7 @@ class CmdCheckHobos(Command): service.get('base_url') + '__skeleton__/') if service.get('service-id') == 'authentic': variables['idp_account_url'] = service_url + 'accounts/' + variables['idp_registration_url'] = service_url + 'accounts/register/' if self.all_services.get('variables'): for key, value in self.all_services.get('variables').items(): variables[key] = value -- 2.18.0