From 4d4f67d2bc1bcca8f03d17e10989dcd3782e4be1 Mon Sep 17 00:00:00 2001 From: James Mardell Date: Tue, 10 Sep 2019 14:32:57 +0100 Subject: [PATCH] feat(Jenkins check view): Add active field Add the active field to Jenkins checks so the user can disable specific Jenkins checks in a similar manner to other checks. --- CHANGES | 5 +++++ cabot/cabotapp/views.py | 1 + 2 files changed, 6 insertions(+) diff --git a/CHANGES b/CHANGES index a80a04b5a..944cad24e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +Version 0.11.17 +--------------- + +* Add "active" checkbox for JenkinsCheck + Version 0.11.16 --------------- diff --git a/cabot/cabotapp/views.py b/cabot/cabotapp/views.py index 1b8c16113..3da203e1d 100644 --- a/cabot/cabotapp/views.py +++ b/cabot/cabotapp/views.py @@ -288,6 +288,7 @@ class Meta: 'debounce', 'max_queued_build_time', 'jenkins_config', + 'active', ) widgets = dict(**base_widgets)