Commit 5588ad83 authored by mness's avatar mness
Browse files

Add another ActionType

The `imported` ActionType was missing from the enum.
parent c6216c5a
...@@ -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, OPENED, CLOSED, REOPENED, PUSHED, COMMENTED, MERGED, JOINED, LEFT, DESTROYED, EXPIRED, REMOVED, DELETED, APPROVED, ACCEPTED; CREATED, UPDATED, OPENED, CLOSED, REOPENED, PUSHED, COMMENTED, MERGED, JOINED, LEFT, DESTROYED, EXPIRED, REMOVED, DELETED, APPROVED, ACCEPTED, IMPORTED;
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