summaryrefslogtreecommitdiffstats
path: root/extensions/UserProfile/Config.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-07-31 08:06:59 +0200
committerByron Jones <bjones@mozilla.com>2013-07-31 08:06:59 +0200
commit819f9b0761b2b4a7be585031a3e761b01e1a238d (patch)
treeb7c06d2325c17af42784f489595720e2e8e472ff /extensions/UserProfile/Config.pm
parent6fbae131d57590e48e5a5ad0b9362767ce3bdf9f (diff)
downloadbugzilla-819f9b0761b2b4a7be585031a3e761b01e1a238d.tar.gz
bugzilla-819f9b0761b2b4a7be585031a3e761b01e1a238d.tar.xz
Bug 859550: Create a user profile page for bugzilla users
Diffstat (limited to 'extensions/UserProfile/Config.pm')
-rw-r--r--extensions/UserProfile/Config.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/extensions/UserProfile/Config.pm b/extensions/UserProfile/Config.pm
new file mode 100644
index 000000000..99dca9e02
--- /dev/null
+++ b/extensions/UserProfile/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::UserProfile;
+use strict;
+
+use constant NAME => 'UserProfile';
+use constant REQUIRED_MODULES => [ ];
+use constant OPTIONAL_MODULES => [ ];
+
+__PACKAGE__->NAME;