diff options
author | David Walsh <davidwalsh83@gmail.com> | 2017-06-06 19:52:36 +0200 |
---|---|---|
committer | David Walsh <davidwalsh83@gmail.com> | 2017-06-06 21:20:37 +0200 |
commit | f02c8bd226d332f6d0ef7d8c55fbace94c055d20 (patch) | |
tree | 0d708a1f375a1a6cc994ed34d37223773129cc19 /extensions/PhabBugz/lib | |
parent | 8de4392bb242d4115c967c1424dc00bee39e939a (diff) | |
download | bugzilla-f02c8bd226d332f6d0ef7d8c55fbace94c055d20.tar.gz bugzilla-f02c8bd226d332f6d0ef7d8c55fbace94c055d20.tar.xz |
Bug 1370378 - Add Phabricator Extension enabled flag to instantly toggle off all Phabricator syncing. r?dkl
Diffstat (limited to 'extensions/PhabBugz/lib')
-rw-r--r-- | extensions/PhabBugz/lib/Config.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/extensions/PhabBugz/lib/Config.pm b/extensions/PhabBugz/lib/Config.pm index a0b7ef2e5..85ba37e74 100644 --- a/extensions/PhabBugz/lib/Config.pm +++ b/extensions/PhabBugz/lib/Config.pm @@ -20,6 +20,11 @@ sub get_param_list { my @params = ( { + name => 'phabricator_enabled', + type => 'b', + default => 0 + }, + { name => 'phabricator_base_uri', type => 't', default => '', |