Skip to content

Commit

Permalink
add preview note to repo invite endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Gallo committed Jun 22, 2016
1 parent 56e9b84 commit aed78b0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions doc/apidoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2929,7 +2929,7 @@ github.repos.deleteHook({ ... });
/**
* @api {delete} /repositories/:repo/invitations/:id deleteInvite
* @apiName deleteInvite
* @apiDescription Delete a repository invitation.
* @apiDescription Delete a repository invitation. (In preview period. See README.)
* @apiGroup repos
*
* @apiParam {String} repo
Expand Down Expand Up @@ -3411,7 +3411,7 @@ github.repos.getHooks({ ... });
/**
* @api {get} /repositories/:repo/invitations getInvites
* @apiName getInvites
* @apiDescription List invitations for a repository.
* @apiDescription List invitations for a repository. (In preview period. See README.)
* @apiGroup repos
*
* @apiParam {String} repo
Expand Down Expand Up @@ -3792,7 +3792,7 @@ github.repos.updateFile({ ... });
/**
* @api {patch} /repositories/:repo/invitations/:id updateInvite
* @apiName updateInvite
* @apiDescription Update a repository invitation.
* @apiDescription Update a repository invitation. (In preview period. See README.)
* @apiGroup repos
*
* @apiParam {String} repo
Expand Down Expand Up @@ -3892,7 +3892,7 @@ github.search.users({ ... });
/**
* @api {patch} /user/repository_invitations/:id acceptRepoInvite
* @apiName acceptRepoInvite
* @apiDescription Accept a repository invitation
* @apiDescription Accept a repository invitation. (In preview period. See README.)
* @apiGroup users
*
* @apiParam {String} id
Expand Down Expand Up @@ -3960,7 +3960,7 @@ github.users.createKey({ ... });
/**
* @api {delete} /user/repository_invitations/:id declineRepoInvite
* @apiName declineRepoInvite
* @apiDescription Decline a repository invitation
* @apiDescription Decline a repository invitation. (In preview period. See README.)
* @apiGroup users
*
* @apiParam {String} id
Expand Down Expand Up @@ -4225,7 +4225,7 @@ github.users.getOrgs({ ... });
/**
* @api {get} /user/repository_invitations getRepoInvites
* @apiName getRepoInvites
* @apiDescription List a user's repository invitations
* @apiDescription List a user's repository invitations. (In preview period. See README.)
* @apiGroup users
*
* @apiExample {js} ex:
Expand Down
12 changes: 6 additions & 6 deletions lib/routes.json
Original file line number Diff line number Diff line change
Expand Up @@ -4400,7 +4400,7 @@
"params": {
"$repo": null
},
"description": "List invitations for a repository."
"description": "List invitations for a repository. (In preview period. See README.)"
},

"delete-invite": {
Expand All @@ -4410,7 +4410,7 @@
"$repo": null,
"$id": null
},
"description": "Delete a repository invitation."
"description": "Delete a repository invitation. (In preview period. See README.)"
},

"update-invite": {
Expand All @@ -4427,7 +4427,7 @@
"description": "The permissions that the associated user will have on the repository. Valid values are read, write, and admin."
}
},
"description": "Update a repository invitation."
"description": "Update a repository invitation. (In preview period. See README.)"
},

"merge": {
Expand Down Expand Up @@ -5486,7 +5486,7 @@
"method": "GET",
"params": {
},
"description": "List a user's repository invitations"
"description": "List a user's repository invitations. (In preview period. See README.)"
},

"accept-repo-invite": {
Expand All @@ -5495,7 +5495,7 @@
"params": {
"$id": null
},
"description": "Accept a repository invitation"
"description": "Accept a repository invitation. (In preview period. See README.)"
},

"decline-repo-invite": {
Expand All @@ -5504,7 +5504,7 @@
"params": {
"$id": null
},
"description": "Decline a repository invitation"
"description": "Decline a repository invitation. (In preview period. See README.)"
}
},

Expand Down

0 comments on commit aed78b0

Please sign in to comment.