summaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-03-06 18:05:35 +0100
committerDave Lawrence <dlawrence@mozilla.com>2012-03-06 18:05:35 +0100
commit2bea3e2abd44e07198199eb9ac86aebc4c3f0f2a (patch)
treeef462db8ce5b5140f3b644c2bf82891772e249f9 /Bugzilla/User.pm
parent22114cb2da0ec6e9939d0d03b4714d74b7cad71f (diff)
downloadbugzilla-2bea3e2abd44e07198199eb9ac86aebc4c3f0f2a.tar.gz
bugzilla-2bea3e2abd44e07198199eb9ac86aebc4c3f0f2a.tar.xz
Bug 732189 - Backport 731562 to bmo: Cache the global/user.html.tmpl template, r=glob
https://bugzilla.mozilla.org/show_bug.cgi?id=731562
Diffstat (limited to 'Bugzilla/User.pm')
-rw-r--r--Bugzilla/User.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index d6e343429..e9d2754f7 100644
--- a/Bugzilla/User.pm
+++ b/Bugzilla/User.pm
@@ -779,6 +779,15 @@ sub in_group_id {
return grep($_->id == $id, @{ $self->groups }) ? 1 : 0;
}
+# This is a helper to get all groups which have an icon to be displayed
+# besides the name of the commenter.
+sub groups_with_icon {
+ my $self = shift;
+
+ my @groups = grep { $_->icon_url } @{ $self->direct_group_membership };
+ return \@groups;
+}
+
sub get_products_by_permission {
my ($self, $group) = @_;
# Make sure $group exists on a per-product basis.