Skip to content

Commit

Permalink
Add but don't export: SHOW-PUSHABLE
Browse files Browse the repository at this point in the history
This was added sometime in the last day or so to the github api and shows
what repositories a user has commit access to.
  • Loading branch information
nixeagle committed Mar 9, 2010
1 parent 5b375ce commit 71afd2f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion users.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,11 @@ ID can be either a string or a positive number."))
:email email)))
(defmethod remove-user-email ((email string) &key login token)
(json->list (authed-request login token '("user" "email" "remove")
:email email)))
:email email)))

(defgeneric show-pushable (&key login token))

(defmethod show-pushable (&key login token)
(json->list (authed-request login token '("repos" "pushable"))))

;;; END

0 comments on commit 71afd2f

Please sign in to comment.