Skip to content

Commit

Permalink
removes obsolete Assignee property from NewIssue and IssueUpdate requ…
Browse files Browse the repository at this point in the history
…est models (replaced with Assignees)
  • Loading branch information
ryangribble committed Mar 6, 2018
1 parent 8572d2f commit 423ddf3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
9 changes: 0 additions & 9 deletions Octokit/Models/Request/IssueUpdate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,6 @@ public class IssueUpdate
/// </summary>
public string Body { get; set; }

/// <summary>
/// Login for the user that this issue should be assigned to.
/// </summary>
/// <remarks>
/// Only users with push access can set the assignee for new issues. The assignee is silently dropped otherwise.
/// </remarks>
[Obsolete("Please use Assignees property. This property will no longer be supported by the GitHub API and will be removed in a future version")]
public string Assignee { get; set; }

/// <summary>
/// List of logins for the multiple users that this issue should be assigned to
/// </summary>
Expand Down
9 changes: 0 additions & 9 deletions Octokit/Models/Request/NewIssue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,6 @@ public NewIssue(string title)
/// </summary>
public string Body { get; set; }

/// <summary>
/// Login for the user that this issue should be assigned to.
/// </summary>
/// <remarks>
/// Only users with push access can set the assignee for new issues. The assignee is silently dropped otherwise.
/// </remarks>
[Obsolete("Please use Assignees property. This property will no longer be supported by the GitHub API and will be removed in a future version")]
public string Assignee { get; set; }

/// <summary>
/// List of logins for the multiple users that this issue should be assigned to
/// </summary>
Expand Down

0 comments on commit 423ddf3

Please sign in to comment.