Projet

Général

Profil

0001-misc-remove-references-to-deprecated-dashboard-modul.patch

Paul Marillonnet, 27 novembre 2020 11:08

Télécharger (1,38 ko)

Voir les différences:

Subject: [PATCH] misc: remove references to deprecated dashboard module
 (#48090)

 src/authentic2/dashboard_migrations/__init__.py | 0
 src/authentic2/settings.py                      | 3 ---
 2 files changed, 3 deletions(-)
 delete mode 100644 src/authentic2/dashboard_migrations/__init__.py
src/authentic2/settings.py
225 225
]
226 226

  
227 227
# Admin tools
228
ADMIN_TOOLS_INDEX_DASHBOARD = 'authentic2.dashboard.CustomIndexDashboard'
229
ADMIN_TOOLS_APP_INDEX_DASHBOARD = 'authentic2.dashboard.CustomAppIndexDashboard'
230 228
ADMIN_TOOLS_MENU = 'authentic2.menu.CustomMenu'
231 229

  
232 230
# Serialization module to support natural keys in generic foreign keys
......
310 308
MIGRATION_MODULES = {
311 309
    'auth': 'authentic2.auth_migrations_18',
312 310
    'menu': 'authentic2.menu_migrations',
313
    'dashboard': 'authentic2.dashboard_migrations',
314 311
}
315 312

  
316 313
# Django REST Framework
317
-