summaryrefslogtreecommitdiffstats
path: root/extensions/TrackingFlags/Config.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2013-07-24 19:54:59 +0200
committerDave Lawrence <dlawrence@mozilla.com>2013-07-24 19:54:59 +0200
commit3cc5f1bea214ad97e22f190a0de1a7b6c26673ee (patch)
tree6aeb74ef63029ac82ccc030d16e4a24c5db00a69 /extensions/TrackingFlags/Config.pm
parent23dcf429e71dfb5301c32b42dc40e5a47d11ed98 (diff)
downloadbugzilla-3cc5f1bea214ad97e22f190a0de1a7b6c26673ee.tar.gz
bugzilla-3cc5f1bea214ad97e22f190a0de1a7b6c26673ee.tar.xz
Bug 750742 - Create new BMO extension called TrackingFlags to move current tracking flags away from custom fields (Schema Only)
r=glob
Diffstat (limited to 'extensions/TrackingFlags/Config.pm')
-rw-r--r--extensions/TrackingFlags/Config.pm24
1 files changed, 24 insertions, 0 deletions
diff --git a/extensions/TrackingFlags/Config.pm b/extensions/TrackingFlags/Config.pm
new file mode 100644
index 000000000..1854cb9fd
--- /dev/null
+++ b/extensions/TrackingFlags/Config.pm
@@ -0,0 +1,24 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# This Source Code Form is "Incompatible With Secondary Licenses", as
+# defined by the Mozilla Public License, v. 2.0.
+
+package Bugzilla::Extension::TrackingFlags;
+use strict;
+
+use constant NAME => 'TrackingFlags';
+
+use constant REQUIRED_MODULES => [
+ {
+ package => 'JSON-XS',
+ module => 'JSON::XS',
+ version => '2.0'
+ },
+];
+
+use constant OPTIONAL_MODULES => [
+];
+
+__PACKAGE__->NAME;