From 8c7d9f3924aca9ad9f29c6cfbb95d44f16d3066c Mon Sep 17 00:00:00 2001 From: Pavel Gnedov Date: Sun, 24 Jul 2022 15:47:03 +0700 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=BA=D0=BE=D0=BD=D1=84=D0=B8=D0=B3=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D1=81=D1=82=D0=B0=D1=82=D1=83=D1=81=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + configs/redmine-statuses-config.jsonc.dist | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 configs/redmine-statuses-config.jsonc.dist diff --git a/.gitignore b/.gitignore index e637fba..fc2026f 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,4 @@ lerna-debug.log* configs/main-config.jsonc configs/issue-event-emitter-config.jsonc tmp/* +configs/redmine-statuses-config.jsonc diff --git a/configs/redmine-statuses-config.jsonc.dist b/configs/redmine-statuses-config.jsonc.dist new file mode 100644 index 0000000..8c067f5 --- /dev/null +++ b/configs/redmine-statuses-config.jsonc.dist @@ -0,0 +1,18 @@ +{ + "redmine_statuses": [ + { + "id": 1, + "name": "New" + }, + { + "id": 2, + "name": "In Progress" + }, + { + "id": 3, + "name": "Closed", + "is_closed": true + } + // ... + ] +} \ No newline at end of file