You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2016/06/20 16:33:10 UTC

[whimsy] 01/02: downcase pmc names for LDAP

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

rubys pushed a commit to branch master
in repository https://git-dual.apache.org/repos/asf/whimsy.git

commit 5d836c411b37d19f98adb737c8727be656a04fcb
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Mon Jun 20 12:32:32 2016 -0400

    downcase pmc names for LDAP
---
 www/board/agenda/views/actions/todos.json.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/board/agenda/views/actions/todos.json.rb b/www/board/agenda/views/actions/todos.json.rb
index 4bb427e..ad6c844 100644
--- a/www/board/agenda/views/actions/todos.json.rb
+++ b/www/board/agenda/views/actions/todos.json.rb
@@ -78,8 +78,8 @@ if @establish and env.password
 
     ASF::LDAP.bind(env.user, env.password) do
       chairs.add [chair] unless chairs.members.include? chair
-      ASF::Group.add(pmc, members)
-      ASF::Committee.add(pmc, members)
+      ASF::Group.add(pmc.downcase, members)
+      ASF::Committee.add(pmc.downcase, members)
     end 
   end
 

-- 
To stop receiving notification emails like this one, please contact
"commits@whimsical.apache.org" <co...@whimsical.apache.org>.