Add repo parameter to issue search

This commit is contained in:
Kori Francis
2015-02-17 14:39:37 -05:00
parent 4a8877cc43
commit 552af011f3
@@ -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.