summaryrefslogtreecommitdiffstats
path: root/extensions/RequestNagger/Config.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-10-29 05:18:37 +0100
committerByron Jones <bjones@mozilla.com>2013-10-29 05:18:37 +0100
commit9b6f5d07a80ff630ed76108e0ca9689b4e2410f5 (patch)
treee70478a85617733543f3dfb90c9036436efb1a22 /extensions/RequestNagger/Config.pm
parentb7ebd27d636881700d442d3a2ff0cf6fa47ca639 (diff)
downloadbugzilla-9b6f5d07a80ff630ed76108e0ca9689b4e2410f5.tar.gz
bugzilla-9b6f5d07a80ff630ed76108e0ca9689b4e2410f5.tar.xz
Bug 892615: Add a 24 hour nag to all requests (review, feedback and need-info) and make them follow-able (schema-only)
Diffstat (limited to 'extensions/RequestNagger/Config.pm')
-rw-r--r--extensions/RequestNagger/Config.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/extensions/RequestNagger/Config.pm b/extensions/RequestNagger/Config.pm
new file mode 100644
index 000000000..6b9488c80
--- /dev/null
+++ b/extensions/RequestNagger/Config.pm
@@ -0,0 +1,15 @@
+# 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::RequestNagger;
+use strict;
+
+use constant NAME => 'RequestNagger';
+use constant REQUIRED_MODULES => [ ];
+use constant OPTIONAL_MODULES => [ ];
+
+__PACKAGE__->NAME;