From d77e95b47f36c74b43ec9cd4ac1f0fe5c2bbaaa2 Mon Sep 17 00:00:00 2001 From: markus schnalke Date: Mon, 25 Feb 2019 13:45:00 +0100 Subject: [PATCH] Add sample config --- config.json | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 config.json diff --git a/config.json b/config.json new file mode 100644 index 0000000..ef0d704 --- /dev/null +++ b/config.json @@ -0,0 +1,51 @@ + +{ + + "users": { + "administrator": { + "gl_username": "MSchnalke" + }, + "schnalke": { + "gl_username": "MSchnalke" + } + }, + + + "mantisUrl": "https://bugs.example.org", + + + "priority_labels": { + "20": "", + "40": "important", + "50": "urgent", + "60": "urgent" + }, + + + "severity_labels": { + "10": "feature", + "20": "bug", + "30": "bug", + "40": "bug", + "50": "bug", + "60": "critical", + "70": "critical", + "80": "critical" + }, + + + "closed_statuses": { + "80": true, + "resolved": true, + "90": true, + "closed": true + }, + + "category_labels": { + "Admin UI": "area:Admin", + "Voter UI": "area:Voter", + "Server": "area:Service" + } + +} + -- 1.7.10.4