diff --git a/Octokit.Reactive/Clients/IObservableAssigneesClient.cs b/Octokit.Reactive/Clients/IObservableAssigneesClient.cs index 502ef625..c1de2265 100644 --- a/Octokit.Reactive/Clients/IObservableAssigneesClient.cs +++ b/Octokit.Reactive/Clients/IObservableAssigneesClient.cs @@ -11,7 +11,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// - IObservable GetForRepository(string owner, string name); + IObservable GetAllForRepository(string owner, string name); /// /// Checks to see if a user is an assignee for a repository. diff --git a/Octokit.Reactive/Clients/IObservableEventsClient.cs b/Octokit.Reactive/Clients/IObservableEventsClient.cs index ced8b7ff..5c037fdb 100644 --- a/Octokit.Reactive/Clients/IObservableEventsClient.cs +++ b/Octokit.Reactive/Clients/IObservableEventsClient.cs @@ -54,7 +54,7 @@ namespace Octokit.Reactive /// /// The login of the user /// All the s that a particular user has received. - IObservable GetUserReceived(string user); + IObservable GetAllUserReceived(string user); /// /// Gets all the events that have been received by a given user. @@ -64,7 +64,7 @@ namespace Octokit.Reactive /// /// The login of the user /// All the s that a particular user has received. - IObservable GetUserReceivedPublic(string user); + IObservable GetAllUserReceivedPublic(string user); /// /// Gets all the events that have been performed by a given user. @@ -74,7 +74,7 @@ namespace Octokit.Reactive /// /// The login of the user /// All the s that a particular user has performed. - IObservable GetUserPerformed(string user); + IObservable GetAllUserPerformed(string user); /// /// Gets all the public events that have been performed by a given user. @@ -84,7 +84,7 @@ namespace Octokit.Reactive /// /// The login of the user /// All the public s that a particular user has performed. - IObservable GetUserPerformedPublic(string user); + IObservable GetAllUserPerformedPublic(string user); /// /// Gets all the events that are associated with an organization. @@ -95,6 +95,6 @@ namespace Octokit.Reactive /// The login of the user /// The name of the organization /// All the public s that are associated with an organization. - IObservable GetForAnOrganization(string user, string organization); + IObservable GetAllForAnOrganization(string user, string organization); } } \ No newline at end of file diff --git a/Octokit.Reactive/Clients/IObservableFollowersClient.cs b/Octokit.Reactive/Clients/IObservableFollowersClient.cs index bae85c30..b867e970 100644 --- a/Octokit.Reactive/Clients/IObservableFollowersClient.cs +++ b/Octokit.Reactive/Clients/IObservableFollowersClient.cs @@ -38,7 +38,7 @@ namespace Octokit.Reactive /// /// A of s that the authenticated user follows. [SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")] - IObservable GetFollowingForCurrent(); + IObservable GetAllFollowingForCurrent(); /// /// List who a user is following @@ -48,7 +48,7 @@ namespace Octokit.Reactive /// See the API documentation for more information. /// /// A of s that the passed user follows. - IObservable GetFollowing(string login); + IObservable GetAllFollowing(string login); /// /// Check if the authenticated user follows another user diff --git a/Octokit.Reactive/Clients/IObservableGistCommentsClient.cs b/Octokit.Reactive/Clients/IObservableGistCommentsClient.cs index 11accd8c..be577f16 100644 --- a/Octokit.Reactive/Clients/IObservableGistCommentsClient.cs +++ b/Octokit.Reactive/Clients/IObservableGistCommentsClient.cs @@ -23,7 +23,7 @@ namespace Octokit.Reactive /// http://developer.github.com/v3/gists/comments/#list-comments-on-a-gist /// The id of the gist /// IObservable{GistComment}. - IObservable GetForGist(string gistId); + IObservable GetAllForGist(string gistId); /// /// Creates a comment for the gist with the specified id. diff --git a/Octokit.Reactive/Clients/IObservableIssueCommentsClient.cs b/Octokit.Reactive/Clients/IObservableIssueCommentsClient.cs index c6c6a67d..256c2990 100644 --- a/Octokit.Reactive/Clients/IObservableIssueCommentsClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssueCommentsClient.cs @@ -25,7 +25,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The list of s for the specified Repository. - IObservable GetForRepository(string owner, string name); + IObservable GetAllForRepository(string owner, string name); /// /// Gets Issue Comments for a specified Issue. @@ -35,7 +35,7 @@ namespace Octokit.Reactive /// The name of the repository /// The issue number /// The list of s for the specified Issue. - IObservable GetForIssue(string owner, string name, int number); + IObservable GetAllForIssue(string owner, string name, int number); /// /// Creates a new Issue Comment for a specified Issue. diff --git a/Octokit.Reactive/Clients/IObservableIssuesClient.cs b/Octokit.Reactive/Clients/IObservableIssuesClient.cs index 10032884..008d9955 100644 --- a/Octokit.Reactive/Clients/IObservableIssuesClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssuesClient.cs @@ -119,7 +119,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// - IObservable GetForRepository(string owner, string name); + IObservable GetAllForRepository(string owner, string name); /// /// Gets issues for a repository. @@ -131,7 +131,7 @@ namespace Octokit.Reactive /// The name of the repository /// Used to filter and sort the list of issues returned /// - IObservable GetForRepository(string owner, string name, RepositoryIssueRequest request); + IObservable GetAllForRepository(string owner, string name, RepositoryIssueRequest request); /// /// Creates an issue for the specified repository. Any user with pull access to a repository can create an diff --git a/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs b/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs index 7dc0b2b6..2e40960b 100644 --- a/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs @@ -15,7 +15,7 @@ namespace Octokit.Reactive /// The name of the repository /// The issue number /// - IObservable GetForIssue(string owner, string name, int number); + IObservable GetAllForIssue(string owner, string name, int number); /// /// Gets all events for the repository. @@ -26,7 +26,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// - IObservable GetForRepository(string owner, string name); + IObservable GetAllForRepository(string owner, string name); /// /// Gets a single event diff --git a/Octokit.Reactive/Clients/IObservableIssuesLabelsClient.cs b/Octokit.Reactive/Clients/IObservableIssuesLabelsClient.cs index 97afc96c..ec84de51 100644 --- a/Octokit.Reactive/Clients/IObservableIssuesLabelsClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssuesLabelsClient.cs @@ -16,7 +16,7 @@ namespace Octokit.Reactive /// The name of the repository /// The number of the issue /// The list of labels - IObservable