From 0d0b25bd2cbe53f288c072deb61a52679db4c13e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 24 Jan 2022 16:53:36 +0100 Subject: [PATCH] add redmine project name mapping for godo.js --- scrutiny/projects/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scrutiny/projects/models.py b/scrutiny/projects/models.py index b04aafc..6828dd1 100644 --- a/scrutiny/projects/models.py +++ b/scrutiny/projects/models.py @@ -93,6 +93,7 @@ class Module(models.Model): mapping = { 'authentic2': 'authentic', 'python-django-mellon': 'django-mellon', + 'godo.js': 'godo', } return mapping.get(self.name) or self.name