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 70622e9 Duplicated
70622e9 is described below
commit 70622e9df08bed549d0e538038e3150d263f6578
Author: Sebb <[email protected]>
AuthorDate: Mon Feb 11 10:35:51 2019 +0000
Duplicated
---
lib/whimsy/asf/ldap.rb | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/whimsy/asf/ldap.rb b/lib/whimsy/asf/ldap.rb
index 3b6b0ad..a7c6a5f 100644
--- a/lib/whimsy/asf/ldap.rb
+++ b/lib/whimsy/asf/ldap.rb
@@ -1096,6 +1096,7 @@ module ASF
project.createTimestamp = results['createTimestamp'].first # it is
returned as an array of 1 entry
members = results['member'] || []
owners = results['owner'] || []
+ # TODO members and owners are duplicated in the project object and the
returned hash
project.members = members
project.owners = owners
[project, [members, owners]] # TODO is this correct? it seems to
work...