Projet

Général

Profil

0001-a2_rbac-move-context_processors-from-django_rbac-708.patch

Valentin Deniaud, 03 novembre 2022 14:40

Télécharger (1,34 ko)

Voir les différences:

Subject: [PATCH 1/4] a2_rbac: move context_processors from django_rbac
 (#70894)

 src/{django_rbac => authentic2/a2_rbac}/context_processors.py | 0
 src/authentic2/settings.py                                    | 2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename src/{django_rbac => authentic2/a2_rbac}/context_processors.py (100%)
src/authentic2/settings.py
73 73
        'OPTIONS': {
74 74
            'context_processors': [
75 75
                'django.contrib.auth.context_processors.auth',
76
                'django_rbac.context_processors.auth',
76
                'authentic2.a2_rbac.context_processors.auth',
77 77
                'django.template.context_processors.debug',
78 78
                'django.template.context_processors.i18n',
79 79
                'django.template.context_processors.media',
80
-