Skip to content
New issue

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

Add "project" to the IssueNoMetadataQualifier #2227

Merged
merged 1 commit into from
Feb 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions Octokit/Models/Request/SearchIssuesRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public SearchIssuesRequest(string term) : base(term)
}

/// <summary>
/// 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.
/// </summary>
/// <remarks>
Expand All @@ -56,7 +56,7 @@ public override string Sort
public IssueTypeQualifier? Type { get; set; }

/// <summary>
/// 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.
/// </summary>
/// <remarks>
Expand Down Expand Up @@ -108,7 +108,7 @@ public IEnumerable<IssueInQualifier> In
public string Commenter { get; set; }

/// <summary>
/// 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.
/// </summary>
/// <remarks>
Expand Down Expand Up @@ -499,7 +499,9 @@ public enum IssueNoMetadataQualifier
[Parameter(Value = "milestone")]
Milestone,
[Parameter(Value = "assignee")]
Assignee
Assignee,
[Parameter(Value = "project")]
Project
}

[DebuggerDisplay("{DebuggerDisplay,nq}")]
Expand Down