Skip to content

Commit

Permalink
Adding RemovedFromProject and other missing EventInfoState types. (oc…
Browse files Browse the repository at this point in the history
…tokit#1591)

* Adding missing review types to event info.

* Fixing whitespace.

* Reword `BaseRefChanged` comment

* Adding missing event types.
  • Loading branch information
lynnfaraday authored and M-Zuber committed May 2, 2017
1 parent ad49dfb commit faae9fc
Showing 1 changed file with 33 additions and 13 deletions.
46 changes: 33 additions & 13 deletions Octokit/Models/Response/EventInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,35 +163,55 @@ public enum EventInfoState
HeadRefRestored,

/// <summary>
/// The actor unsubscribed from notifications for an issue.
/// The actor dismissed a review from the pull request.
/// </summary>
Unsubscribed,
ReviewDismissed,

/// <summary>
/// A comment was added to the issue.
/// The actor requested review from the subject on this pull request.
/// </summary>
Commented,
ReviewRequested,

/// <summary>
/// A commit was added to the pull request's HEAD branch.
/// Only provided for pull requests.
/// The actor removed the review request for the subject on this pull request.
/// </summary>
Committed,
ReviewRequestRemoved,

/// <summary>
/// The actor requested review from the subject on this pull request.
/// The issue was added to a project board.
/// </summary>
ReviewRequested,
AddedToProject,

/// <summary>
/// The actor dismissed a review from the pull request.
/// The issue was moved between columns in a project board.
/// </summary>
ReviewDismissed,
MovedColumnsInProject,

/// <summary>
/// The actor removed the review request for the subject on this pull request.
/// The issue was removed from a project board.
/// </summary>
ReviewRequestRemoved,
RemovedFromProject,

/// <summary>
/// The issue was created by converting a note in a project board to an issue.
/// </summary>
ConvertedNoteToIssue,

/// <summary>
/// The actor unsubscribed from notifications for an issue.
/// </summary>
Unsubscribed,

/// <summary>
/// A comment was added to the issue.
/// </summary>
Commented,

/// <summary>
/// A commit was added to the pull request's HEAD branch.
/// Only provided for pull requests.
/// </summary>
Committed,

/// <summary>
/// Base branch of the pull request was changed.
Expand Down

0 comments on commit faae9fc

Please sign in to comment.