Commit c6216c5a authored by mness's avatar mness
Browse files

Add new ActionTypes for Events

New `action_type` values were recently added in the Events API: `approved`, `accepted`, `opened`, `deleted`.  This change adds the new types to the ActionType enum.
parent 431a82f0
...@@ -463,7 +463,7 @@ public interface Constants { ...@@ -463,7 +463,7 @@ public interface Constants {
/** Enum to use for specifying the event action_type. */ /** Enum to use for specifying the event action_type. */
public enum ActionType { public enum ActionType {
CREATED, UPDATED, CLOSED, REOPENED, PUSHED, COMMENTED, MERGED, JOINED, LEFT, DESTROYED, EXPIRED, REMOVED; CREATED, UPDATED, OPENED, CLOSED, REOPENED, PUSHED, COMMENTED, MERGED, JOINED, LEFT, DESTROYED, EXPIRED, REMOVED, DELETED, APPROVED, ACCEPTED;
private static JacksonJsonEnumHelper<ActionType> enumHelper = new JacksonJsonEnumHelper<>(ActionType.class); private static JacksonJsonEnumHelper<ActionType> enumHelper = new JacksonJsonEnumHelper<>(ActionType.class);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment