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 64b65ac Future enhancement
64b65ac is described below
commit 64b65ac041f266738d330b498d715700ec573083
Author: Sebb <[email protected]>
AuthorDate: Fri Jun 30 21:50:00 2017 +0100
Future enhancement
---
lib/whimsy/asf/mlist.rb | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/lib/whimsy/asf/mlist.rb b/lib/whimsy/asf/mlist.rb
index 31570ce..f800be6 100644
--- a/lib/whimsy/asf/mlist.rb
+++ b/lib/whimsy/asf/mlist.rb
@@ -15,6 +15,14 @@ module ASF
yield line.strip
end
end
+ ## When more frequent cronjobs are possible, the above Could be replaced
by:
+# def self.board_subscribers
+# if block_given?
+# list_filter('sub','apache.org','board').each {|y| yield y}
+# else
+# list_filter('sub','apache.org','board')
+# end
+# end
# yield the list of subscribers to members@
def self.members_subscribers
@@ -23,6 +31,15 @@ module ASF
end
end
+ ## When more frequent cronjobs are possible, the above Could be replaced
by:
+# def self.members_subscribers
+# if block_given?
+# list_filter('sub','apache.org','members').each {|y| yield y}
+# else
+# list_filter('sub','apache.org','members')
+# end
+# end
+
# return a hash of subscriptions for the list of emails provided
# the following keys are added to the response hash:
# :subtime - the timestamp when the data was last updated
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].