Projet

Général

Profil

0001-saml2-add-connection_url-in-the-default-mapper.patch

Jérôme Schneider, 21 novembre 2014 15:07

Télécharger (1,03 ko)

Voir les différences:

Subject: [PATCH] saml2: add connection_url in the default mapper

Closes #5992
 mandaye/auth/saml2.py | 5 +++++
 1 file changed, 5 insertions(+)
mandaye/auth/saml2.py
114 114
        default_mapping = super(SAML2Auth, self).get_default_mapping()
115 115
        default_mapping.extend([
116 116
                {
117
                    'path': r'%s$' % self.urls.get('connection_url', '/mandaye/sso'),
118
                    'method': 'GET',
119
                    'response': {'filter': self.sso,}
120
                },
121
                {
117 122
                    'path': r'%s$' % self.END_POINTS_PATH['metadata'],
118 123
                    'method': 'GET',
119 124
                    'response': {'filter': self.metadata,}
120
-