summaryrefslogtreecommitdiffstats
path: root/extensions/BugModal/Config.pm
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-03-24 06:45:44 +0100
committerByron Jones <glob@mozilla.com>2015-03-24 06:45:44 +0100
commit3ac701266452d3509776fe58f9e1b2b8e9f33c1e (patch)
tree88124baaadb529b1c9809f6b3fa20384c1870780 /extensions/BugModal/Config.pm
parent11bd061970f8b9c98e6af43a4c8c7ca4bfff9eb3 (diff)
downloadbugzilla-3ac701266452d3509776fe58f9e1b2b8e9f33c1e.tar.gz
bugzilla-3ac701266452d3509776fe58f9e1b2b8e9f33c1e.tar.xz
Bug 1096798: prototype modal show_bug view
Diffstat (limited to 'extensions/BugModal/Config.pm')
-rw-r--r--extensions/BugModal/Config.pm21
1 files changed, 21 insertions, 0 deletions
diff --git a/extensions/BugModal/Config.pm b/extensions/BugModal/Config.pm
new file mode 100644
index 000000000..b4242753a
--- /dev/null
+++ b/extensions/BugModal/Config.pm
@@ -0,0 +1,21 @@
+# 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::BugModal;
+use strict;
+
+use constant NAME => 'BugModal';
+use constant REQUIRED_MODULES => [
+ {
+ package => 'Time-Duration',
+ module => 'Time::Duration',
+ version => 0
+ },
+];
+use constant OPTIONAL_MODULES => [ ];
+
+__PACKAGE__->NAME;