diff --git a/Octokit/Models/Request/SearchIssuesRequest.cs b/Octokit/Models/Request/SearchIssuesRequest.cs index 5b5508a34a..acb33c6f47 100644 --- a/Octokit/Models/Request/SearchIssuesRequest.cs +++ b/Octokit/Models/Request/SearchIssuesRequest.cs @@ -33,7 +33,7 @@ public SearchIssuesRequest(string term) : base(term) } /// - /// Optional Sort field. One of comments, created, updated or merged + /// Optional Sort field. One of comments, created, updated or merged /// If not provided, results are sorted by best match. /// /// @@ -56,7 +56,7 @@ public override string Sort public IssueTypeQualifier? Type { get; set; } /// - /// Qualifies which fields are searched. With this qualifier you can restrict + /// Qualifies which fields are searched. With this qualifier you can restrict /// the search to just the title, body, comments, or any combination of these. /// /// @@ -108,7 +108,7 @@ public IEnumerable In public string Commenter { get; set; } /// - /// Finds issues that were either created by a certain user, assigned to that user, + /// Finds issues that were either created by a certain user, assigned to that user, /// mention that user, or were commented on by that user. /// /// @@ -499,7 +499,9 @@ public enum IssueNoMetadataQualifier [Parameter(Value = "milestone")] Milestone, [Parameter(Value = "assignee")] - Assignee + Assignee, + [Parameter(Value = "project")] + Project } [DebuggerDisplay("{DebuggerDisplay,nq}")]