Liking cljdoc? Tell your friends :D

clj-github.issues

Implements the API functions described here: http://develop.github.com/p/issues.html In any function that takes a 'state' argument, state is either "open" or "closed"

Implements the API functions described here: http://develop.github.com/p/issues.html
In any function that takes a 'state' argument, state is either "open" or "closed"
raw docstring

add-labelclj

(add-label user repo label & [number])

Add a label. If you supply an issue number, the label will be added to that issue. Otherwise, the label will be added to the system, but not attached to an issue.

Add a label. If you supply an issue number, the label will be added to that issue.
Otherwise, the label will be added to the system, but not attached to an issue.
raw docstring

close-issueclj

(close-issue user repo number)

Closes an issue.

Closes an issue.
raw docstring

comment-issueclj

(comment-issue user repo number comment)

Comment on an issue.

Comment on an issue.
raw docstring

edit-issueclj

(edit-issue user repo number & {:keys [title body]})

Edit an issue.

Edit an issue.
raw docstring

issue-commentsclj

(issue-comments user repo number)

List of comments on an issue/

List of comments on an issue/
raw docstring

list-issuesclj

(list-issues user repo state)

List of issues a project has.

List of issues a project has.
raw docstring

list-label-issuesclj

(list-label-issues user repo label)

List of issues a project has.

List of issues a project has.
raw docstring

list-labelsclj

(list-labels user repo)

Lists a project's issue labels.

Lists a project's issue labels.
raw docstring

open-issueclj

(open-issue user repo title body)

Open an issue.

Open an issue.
raw docstring

remove-labelclj

(remove-label user repo label & [number])

Remove a label. If you supply an issue number, the label will be removed from that issue alone. Otherwise, the label will be removed from all issues.

Remove a label. If you supply an issue number, the label will be removed from that issue
alone. Otherwise, the label will be removed from all issues.
raw docstring

reopen-issueclj

(reopen-issue user repo number)

Reopens a previously closed issue.

Reopens a previously closed issue.
raw docstring

search-issuesclj

(search-issues user repo state term)

Search through a project's issues.

Search through a project's issues.
raw docstring

show-issueclj

(show-issue user repo number)

Shows the data on an individual issue.

Shows the data on an individual issue.
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close