Projet

Général

Profil

0001-auth_fc-provide-a-more-human-friendly-core-id-claim-.patch

Paul Marillonnet, 16 juin 2022 13:44

Télécharger (1,91 ko)

Voir les différences:

Subject: [PATCH] auth_fc: provide a more human-friendly core id claim label
 (#66304)

 src/authentic2_auth_fc/migrations/0005_fcauthenticator.py | 2 +-
 src/authentic2_auth_fc/models.py                          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
src/authentic2_auth_fc/migrations/0005_fcauthenticator.py
65 65
                                ('preferred_username', 'usual family name (preferred_username)'),
66 66
                                ('address', 'address (address)'),
67 67
                                ('phone', 'phone (phone)'),
68
                                ('identite_pivot', 'identite_pivot (identite_pivot)'),
68
                                ('identite_pivot', 'core id (identite_pivot)'),
69 69
                                ('profile', 'profile (profile)'),
70 70
                                ('birth', 'birth profile (birth)'),
71 71
                            ],
src/authentic2_auth_fc/models.py
42 42
    ('preferred_username', _('usual family name (preferred_username)')),
43 43
    ('address', _('address (address)')),
44 44
    ('phone', _('phone (phone)')),
45
    ('identite_pivot', _('identite_pivot (identite_pivot)')),
45
    ('identite_pivot', _('core id (identite_pivot)')),
46 46
    ('profile', _('profile (profile)')),
47 47
    ('birth', _('birth profile (birth)')),
48 48
]
49
-