You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by cl...@apache.org on 2020/06/05 00:58:19 UTC

[whimsy] branch master updated: Add emeritus rescinded and reinstated

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

clr 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 694e96b  Add emeritus rescinded and reinstated
694e96b is described below

commit 694e96b80ca07251b14ca61fb5e46d8a4e4e9d6b
Author: Craig L Russell <ap...@gmail.com>
AuthorDate: Thu Jun 4 17:57:52 2020 -0700

    Add emeritus rescinded and reinstated
---
 lib/whimsy/asf/documents.rb | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/lib/whimsy/asf/documents.rb b/lib/whimsy/asf/documents.rb
index 57660de..9ed8c32 100644
--- a/lib/whimsy/asf/documents.rb
+++ b/lib/whimsy/asf/documents.rb
@@ -131,7 +131,20 @@ module ASF
       _, list = ASF::SVN.getlisting('emeritus-requests-received')
       list
     end
+  end
 
+  class EmeritusRescindedFiles < EmeritusFiles
+    def self.listnames
+      _, list = ASF::SVN.getlisting('emeritus-requests-rescinded')
+      list
+    end
+  end
+
+  class EmeritusReinstatedFiles < EmeritusFiles
+    def self.listnames
+      _, list = ASF::SVN.getlisting('emeritus-reinstated')
+      list
+    end
   end
 
 end