Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
5588ad83
Commit
5588ad83
authored
Sep 21, 2021
by
mness
Browse files
Add another ActionType
The `imported` ActionType was missing from the enum.
parent
c6216c5a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/Constants.java
View file @
5588ad83
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment