🐛(plugin) allow simple application name
This allows to use the application name, instead of the full path to the application configuration in the INSTALLED_PLUGINS setting.
This commit is contained in:
committed by
Sabrina Demagny
parent
2f1843e0e8
commit
a009f3ccb7
@@ -1,9 +1,11 @@
|
||||
"""La Suite plugin application configuration."""
|
||||
|
||||
from core.plugins.base import BasePluginAppConfig
|
||||
from django.apps import AppConfig
|
||||
|
||||
from core.plugins.base import BasePluginAppConfigMixIn
|
||||
|
||||
|
||||
class LaSuitePluginConfig(BasePluginAppConfig):
|
||||
class LaSuitePluginConfig(BasePluginAppConfigMixIn, AppConfig):
|
||||
"""Configuration for the La Suite plugin application."""
|
||||
|
||||
name = "plugins.la_suite"
|
||||
|
||||
Reference in New Issue
Block a user