Projet

Général

Profil

0001-hobo-create-idp_registration_url-for-template-compat.patch

Frédéric Péters, 06 juillet 2018 15:41

Télécharger (1,06 ko)

Voir les différences:

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(+)
wcs/ctl/check_hobos.py
391 391
                            service.get('base_url') + '__skeleton__/')
392 392
            if service.get('service-id') == 'authentic':
393 393
                variables['idp_account_url'] = service_url + 'accounts/'
394
                variables['idp_registration_url'] = service_url + 'accounts/register/'
394 395
        if self.all_services.get('variables'):
395 396
            for key, value in self.all_services.get('variables').items():
396 397
                variables[key] = value
397
-