Ejemplo n.º 1
0
 /** Conceals the membership. */
 public void conceal(GHUser u) throws IOException {
   root.retrieveWithAuth3("/orgs/" + login + "/public_members/" + u.getLogin(), null, "DELETE");
 }
Ejemplo n.º 2
0
 /** Publicizes the membership. */
 public void publicize(GHUser u) throws IOException {
   root.retrieveWithAuth3("/orgs/" + login + "/public_members/" + u.getLogin(), null, "PUT");
 }