You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2019/01/17 09:21:31 UTC

[whimsy] branch master updated: Only show PMCs now that non-PMC code is established

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new a7a33fc  Only show PMCs now that non-PMC code is established
a7a33fc is described below

commit a7a33fc16d4435c4e4f3af592e49b3a6496dfc76
Author: Sebb <se...@apache.org>
AuthorDate: Thu Jan 17 09:21:23 2019 +0000

    Only show PMCs now that non-PMC code is established
---
 www/roster/models/committee.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/roster/models/committee.rb b/www/roster/models/committee.rb
index 52f60bf..e635811 100644
--- a/www/roster/models/committee.rb
+++ b/www/roster/models/committee.rb
@@ -3,7 +3,7 @@ class Committee
     response = {}
 
     pmc = ASF::Committee.find(id)
-#    return if pmc.nonpmc? # Only show PMCs TODO later
+    return if pmc.nonpmc? # Only show PMCs
     members = pmc.owners
     committers = pmc.committers
     return if members.empty? and committers.empty?