Skip to content
Snippets Groups Projects
Verified Commit fbc9abfe authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

[Django] Use explicit app label

Otherwise, all generated labels would be namespaced as django_.
parent f6fce092
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,7 @@ from . import settings, util ...@@ -8,6 +8,7 @@ from . import settings, util
class BigbluebuttonConfig(AppConfig): class BigbluebuttonConfig(AppConfig):
name = "bigbluebutton.django" name = "bigbluebutton.django"
verbose_name = _("BigBlueButton Django integration") verbose_name = _("BigBlueButton Django integration")
label = "bigbluebutton"
def ready(self): def ready(self):
"""Extend the User model with attribute shortcuts.""" """Extend the User model with attribute shortcuts."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment