Merge Request #97

Merged
softwarepublico/colab!97
Created by Lucas Kanashiro

Fix app label

Assignee: None
Milestone: None

Merged by Sergio Oliveira

Commits (1)
1 participants
colab/plugins/conf.py
... ... @@ -3,4 +3,4 @@ from django.conf import settings
3 3  
4 4  
5 5 def get_plugin_config(app_label):
6   - return settings.COLAB_APPS.get('gitlab', {})
  6 + return settings.COLAB_APPS.get(app_label, {})
... ...