Projet

Général

Profil

0001-root-implement-automatic-tryauth-12867.patch

Serghei Mihai (congés, retour 15/05), 18 mai 2020 09:40

Télécharger (1003 octets)

Voir les différences:

Subject: [PATCH] root: implement automatic tryauth (#12867)

 auquotidien/modules/root.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
auquotidien/modules/root.py
259 259
            self.backoffice = get_publisher().backoffice_directory_class()
260 260

  
261 261
        try:
262
            return Directory._q_traverse(self, path)
262
            output = Directory._q_traverse(self, path)
263
            if path and path[0] == 'saml':
264
                return output
265
            return self.automatic_sso(output)
263 266
        except errors.TraversalError as e:
264 267
            try:
265 268
                f = FormDef.get_by_urlname(path[0])
266
-