mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 12:03:19 +00:00
Add actual "GetAllForRepository" Activity Feed (#1288)
This commit is contained in:
committed by
Brendan Forster
parent
7bb751c594
commit
7b372253ca
@@ -47,6 +47,29 @@ namespace Octokit.Reactive
|
||||
/// <returns>All the <see cref="Activity"/>s for the particular repository.</returns>
|
||||
IObservable<Activity> GetAllForRepository(string owner, string name, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the issue events for a given repository
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||
/// </remarks>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>All the <see cref="Activity"/>s for the particular repository.</returns>
|
||||
IObservable<Activity> GetAllIssuesForRepository(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the issue events for a given repository
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||
/// </remarks>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <returns>All the <see cref="Activity"/>s for the particular repository.</returns>
|
||||
IObservable<Activity> GetAllIssuesForRepository(string owner, string name, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the events for a given repository network
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user