You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit implements most of the "teams api".Some requests marked deprecated
were not implemented. A few new functions were created to support these requests:
githubPut, githubDelete. All of the samples have been tested and are working at
the time of this commit. A few requests were not implemented because they depend
on a specific header being set: application/vnd.github.ironman-preview+json; this
header is needed until the v3 api becomes the law of the land, apparently.
Teams API reference: https://developer.github.com/v3/orgs/teams
Copy file name to clipboardExpand all lines: Github/Data/Definitions.hs
+94-1Lines changed: 94 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -335,7 +335,7 @@ data EventType =
335
335
| Referenced--^ The issue was referenced from a commit message. The commit_id attribute is the commit SHA1 of where that happened.
336
336
| Merged--^ The issue was merged by the actor. The commit_id attribute is the SHA1 of the HEAD commit that was merged.
337
337
| Assigned--^ The issue was assigned to the actor.
338
-
| Closed--^ The issue was closed by the actor. When the commit_id is present, it identifies the commit that closed the issue using “closes / fixes #NN” syntax.
338
+
| Closed--^ The issue was closed by the actor. When the commit_id is present, it identifies the commit that closed the issue using “closes / fixes #NN” syntax.
339
339
| Reopened--^ The issue was reopened by the actor.
340
340
| ActorUnassigned--^ The issue was unassigned to the actor
0 commit comments