Initial implementation

- Allows to specify a list of django-apps to be "installed" alongside the plugin.

(cherry picked from commit 6c7296200d756d2acbba3a589a7759f3a690cc48)
This commit is contained in:
Jonathan Senecal
2022-09-20 17:55:44 -04:00
committed by jeremystretch
parent ad1d7b3ade
commit 53b9330dae
2 changed files with 35 additions and 2 deletions

View File

@@ -55,6 +55,9 @@ class PluginConfig(AppConfig):
# Django-rq queues dedicated to the plugin
queues = []
# Django apps to append to INSTALLED_APPS when plugin requires them.
django_apps = []
# Default integration paths. Plugin authors can override these to customize the paths to
# integrated components.
graphql_schema = 'graphql.schema'