We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As part of completing #760 a number of overloads need to be added to the client interfaces.
As an example, this has been added to IReleasesClientand IObservableReleasesClient.
IReleasesClient
IObservableReleasesClient
The checklist for porting each method is:
IIssuesClient
ApiOptions
IObservableIssuesClient
This needs to be done for each of these methods:
Task<IReadOnlyList<Issue>> GetAllForCurrent()
Task<IReadOnlyList<Issue>> GetAllForCurrent(IssueRequest request)
Task<IReadOnlyList<Issue>> GetAllForOrganization(String organization)
Task<IReadOnlyList<Issue>> GetAllForOrganization(String organization, IssueRequest request)
Task<IReadOnlyList<Issue>> GetAllForOwnedAndMemberRepositories()
Task<IReadOnlyList<Issue>> GetAllForOwnedAndMemberRepositories(IssueRequest request)
Task<IReadOnlyList<Issue>> GetAllForRepository(String owner, String name)
Task<IReadOnlyList<Issue>> GetAllForRepository(String owner, String name, RepositoryIssueRequest request)
The text was updated successfully, but these errors were encountered:
shiftkey
No branches or pull requests
As part of completing #760 a number of overloads need to be added to the client interfaces.
As an example, this has been added to
IReleasesClient
andIObservableReleasesClient
.The checklist for porting each method is:
IIssuesClient
with a new parameterApiOptions
IIssuesClient
IObservableIssuesClient
with a new parameterApiOptions
IObservableIssuesClient
This needs to be done for each of these methods:
Task<IReadOnlyList<Issue>> GetAllForCurrent()
Task<IReadOnlyList<Issue>> GetAllForCurrent(IssueRequest request)
Task<IReadOnlyList<Issue>> GetAllForOrganization(String organization)
Task<IReadOnlyList<Issue>> GetAllForOrganization(String organization, IssueRequest request)
Task<IReadOnlyList<Issue>> GetAllForOwnedAndMemberRepositories()
Task<IReadOnlyList<Issue>> GetAllForOwnedAndMemberRepositories(IssueRequest request)
Task<IReadOnlyList<Issue>> GetAllForRepository(String owner, String name)
Task<IReadOnlyList<Issue>> GetAllForRepository(String owner, String name, RepositoryIssueRequest request)
The text was updated successfully, but these errors were encountered: