Projet

Général

Profil

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

Benjamin Dauvergne, 04 juin 2019 17:04

Télécharger (923 octets)

Voir les différences:

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

 auquotidien/modules/root.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
auquotidien/modules/root.py
819 819
            self.backoffice = get_publisher().backoffice_directory_class()
820 820

  
821 821
        try:
822
            return Directory._q_traverse(self, path)
822
            output = Directory._q_traverse(self, path)
823
            return self.automatic_sso(output)
823 824
        except errors.TraversalError, e:
824 825
            try:
825 826
                f = FormDef.get_by_urlname(path[0])
826
-