summaryrefslogtreecommitdiffstats
path: root/extensions/Gravatar/Config.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-08-14 08:59:17 +0200
committerByron Jones <bjones@mozilla.com>2013-08-14 08:59:17 +0200
commit99719077aeeac9b6a449b657893e4ee29511132c (patch)
treef714060a120614d8673649d755e66642eb6f3c0a /extensions/Gravatar/Config.pm
parent14102c9968496f9341994ea92b24c9490331a2d2 (diff)
downloadbugzilla-99719077aeeac9b6a449b657893e4ee29511132c.tar.gz
bugzilla-99719077aeeac9b6a449b657893e4ee29511132c.tar.xz
Bug 903955: add gravatar support
Diffstat (limited to 'extensions/Gravatar/Config.pm')
-rw-r--r--extensions/Gravatar/Config.pm16
1 files changed, 16 insertions, 0 deletions
diff --git a/extensions/Gravatar/Config.pm b/extensions/Gravatar/Config.pm
new file mode 100644
index 000000000..e15a41ee8
--- /dev/null
+++ b/extensions/Gravatar/Config.pm
@@ -0,0 +1,16 @@
+# 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::Gravatar;
+
+use strict;
+
+use constant NAME => 'Gravatar';
+use constant REQUIRED_MODULES => [];
+use constant OPTIONAL_MODULES => [];
+
+__PACKAGE__->NAME;