aboutsummaryrefslogtreecommitdiffstats
path: root/ext/issues.md
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2011-05-14 13:14:50 -0400
committerKenneth Reitz <me@kennethreitz.com>2011-05-14 13:14:50 -0400
commit065cee2a18213e2ef67c47c6ed951cd840417779 (patch)
treed06dd41559126d3ada91a7697c2d035464de2414 /ext/issues.md
parentwork in progress note (diff)
downloadpython-github3-065cee2a18213e2ef67c47c6ed951cd840417779.tar.xz
python-github3-065cee2a18213e2ef67c47c6ed951cd840417779.zip
site's up, no need to clone docs
Diffstat (limited to 'ext/issues.md')
-rw-r--r--ext/issues.md48
1 files changed, 0 insertions, 48 deletions
diff --git a/ext/issues.md b/ext/issues.md
deleted file mode 100644
index 83920ff..0000000
--- a/ext/issues.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# Issues API
-
-## List issues for this Repository
-
-### GET `/repos/:user/:repo/issues.json`
-
-* `?milestone` = (Fixnum)
-* `?sort` = (String)
-* `?direction` = (String)
-* `?state` = open, closed, default: open
-* `?assignee` = (String)
-* `?mentioned` = (String)
-* `?labels` = (String)
-
-
-## Create an Issue
-
-### POST `/repos/:user/:repo/issues.json`
-
-### Input
-
- {
- title: String,
- body: String,
- assignee: String,
- milestone: Fixnum,
- }
-
-## Get a single Issue
-
-### GET `/repos/:user/:repo/issues/:id.json`
-
-## Edit an Issue
-
-### PUT `/repos/:user/:repo/issues/:id.json`
-
-### Input
-
- {
- title: String,
- body: String,
- assignee: String,
- milestone: Fixnum,
- }
-
-## Delete an Issue
-
-### DELETE `/repos/:user/:repo/issues/:id.json`