Projet

Général

Profil

0001-auth_oidc-provide-clearer-STRATEGY_CREATE-explanatio.patch

Paul Marillonnet, 27 avril 2022 17:39

Télécharger (1,01 ko)

Voir les différences:

Subject: [PATCH] auth_oidc: provide clearer STRATEGY_CREATE explanation
 (#64624)

 src/authentic2_auth_oidc/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
src/authentic2_auth_oidc/models.py
45 45
    STRATEGY_NONE = 'none'
46 46

  
47 47
    STRATEGIES = [
48
        (STRATEGY_CREATE, _('create if standard account matching failed')),
48
        (STRATEGY_CREATE, _('create if standard account matching on email address failed')),
49 49
        (STRATEGY_FIND_UUID, _('use sub to find existing user through UUID')),
50 50
        (STRATEGY_FIND_USERNAME, _('use sub to find existing user through username')),
51 51
        (STRATEGY_NONE, _('none')),
52
-