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 ee50406 Show unsubbed mentors
ee50406 is described below
commit ee5040666dfc4d7d5a60a094e803cb858795da83
Author: Sebb <[email protected]>
AuthorDate: Thu Mar 7 21:05:52 2019 +0000
Show unsubbed mentors
---
www/roster/views/ppmc/mentors.js.rb | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/www/roster/views/ppmc/mentors.js.rb
b/www/roster/views/ppmc/mentors.js.rb
index 499886f..8a5a037 100644
--- a/www/roster/views/ppmc/mentors.js.rb
+++ b/www/roster/views/ppmc/mentors.js.rb
@@ -58,11 +58,15 @@ class PPMCMentor < Vue
end
if @@person.member
- _td { _b { _a @@person.id, href: "committer/#{@@person.id}" } }
+ _td { _b { _a @@person.id, href: "committer/#{@@person.id}" }
+ _a ' (*)', href: "ppmc/#{@@ppmc.id}#crosscheck" if
@@person.notSubbed and @@ppmc.analysePrivateSubs
+ }
_td @@person.githubUsername
_td { _b @@person.name }
elsif @@person.name
- _td { _a @@person.id, href: "committer/#{@@person.id}" }
+ _td { _a @@person.id, href: "committer/#{@@person.id}"
+ _a ' (*)', href: "ppmc/#{@@ppmc.id}#crosscheck" if
@@person.notSubbed and @@ppmc.analysePrivateSubs
+ }
_td @@person.githubUsername
_td @@person.name
else