mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 03:55:55 +00:00
Add repo parameter to issue search
This commit is contained in:
@@ -17,6 +17,12 @@ namespace Octokit
|
||||
{
|
||||
public SearchIssuesRequest(string term) : base(term) { }
|
||||
|
||||
public SearchIssuesRequest(string term, string repo)
|
||||
: this(term)
|
||||
{
|
||||
this.Repo = repo;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Optional Sort field. One of comments, created, or updated.
|
||||
/// If not provided, results are sorted by best match.
|
||||
|
||||
Reference in New Issue
Block a user