mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 03:30:34 +00:00
Fix for issue #738
Added Unsubscribed value to the EventInfoState enumeration
This commit is contained in:
@@ -89,5 +89,6 @@ public class IssueEventTests
|
||||
var issueEvent = serializer.Deserialize<IssueEvent>(json);
|
||||
|
||||
Assert.NotNull(issueEvent);
|
||||
Assert.Equal(EventInfoState.Unsubscribed, issueEvent.Event);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -162,5 +162,10 @@ namespace Octokit
|
||||
/// The pull request’s branch was restored.
|
||||
/// </summary>
|
||||
HeadRefRestored,
|
||||
|
||||
/// <summary>
|
||||
/// The actor unsubscribed from notifications for an issue.
|
||||
/// </summary>
|
||||
Unsubscribed,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user