Projet

Général

Profil

0001-idp_oidc-add-is_templated-option-to-claim-model-3788.patch

Paul Marillonnet, 20 février 2020 16:52

Télécharger (1,04 ko)

Voir les différences:

Subject: [PATCH 1/6] idp_oidc: add 'is_templated' option to claim model
 (#37884)

 src/authentic2_idp_oidc/models.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
src/authentic2_idp_oidc/models.py
377 377
        max_length=128, blank=True,
378 378
        verbose_name=_('attribute name'))
379 379
    value = models.CharField(
380
        max_length=128, blank=True,
380
        max_length=255, blank=True,
381 381
        verbose_name=_('attribute value'))
382
    is_templated = models.BooleanField(
383
        verbose_name=_('uses django template language'),
384
        default=False)
382 385
    scopes = models.CharField(
383 386
        max_length=128, blank=True,
384 387
        verbose_name=_('attribute scopes'))
385
-