Skip to content

Commit

Permalink
add preview routes for mockingbird
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftkey committed Mar 6, 2020
1 parent 935d5ff commit e7ed27c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Octokit/Clients/IssueTimelineClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public Task<IReadOnlyList<TimelineEventInfo>> GetAllForIssue(string owner, strin
/// <param name="repo">The name of the repository</param>
/// <param name="number">The issue number</param>
/// <param name="options">Options for changing the API repsonse</param>
[Preview("mockingbird")]
[ManualRoute("GET", "/repos/{owner}/{name}/issues/{number}/timeline")]
public Task<IReadOnlyList<TimelineEventInfo>> GetAllForIssue(string owner, string repo, int number, ApiOptions options)
{
Expand Down Expand Up @@ -79,6 +80,7 @@ public Task<IReadOnlyList<TimelineEventInfo>> GetAllForIssue(long repositoryId,
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The issue number</param>
/// <param name="options">Options for changing the API response</param>
[Preview("mockingbird")]
[ManualRoute("GET", "/repositories/{id}/issues/{number}/timeline")]
public Task<IReadOnlyList<TimelineEventInfo>> GetAllForIssue(long repositoryId, int number, ApiOptions options)
{
Expand Down

0 comments on commit e7ed27c

Please sign in to comment.