Allow adding custom Django apps in settings_local.py

Review Request #2630 — Created Sept. 29, 2011 and submitted — Latest diff uploaded

Information

Review Board
master

Reviewers

Allow adding custom Django apps in settings_local.py

This makes it easy to add per-site additional Django applications, such as custom auth processors. In order to add a new app, settings_local.py just has to provide the variable RB_EXTRA_APPS.
Tested successfully with django-socialregistration.

RB_EXTRA_APPS = (
    'socialregistration',
)
    Loading...