File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/main/java/org/gitlab4j/api/webhook Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
6
6
public class DeploymentEvent extends AbstractEvent {
7
7
8
- public static final String JOB_HOOK_X_GITLAB_EVENT = "Deployment Hook" ;
8
+ public static final String X_GITLAB_EVENT = "Deployment Hook" ;
9
9
public static final String OBJECT_KIND = "deployment" ;
10
10
11
11
private String status ;
Original file line number Diff line number Diff line change 4
4
5
5
public class ReleaseEvent extends AbstractEvent {
6
6
7
- public static final String JOB_HOOK_X_GITLAB_EVENT = "Release Hook" ;
7
+ public static final String X_GITLAB_EVENT = "Release Hook" ;
8
8
public static final String OBJECT_KIND = "release" ;
9
9
10
10
private Integer id ;
Original file line number Diff line number Diff line change @@ -105,8 +105,8 @@ public Event handleRequest(HttpServletRequest request) throws GitLabApiException
105
105
case PushEvent .X_GITLAB_EVENT :
106
106
case TagPushEvent .X_GITLAB_EVENT :
107
107
case WikiPageEvent .X_GITLAB_EVENT :
108
- case DeploymentEvent .JOB_HOOK_X_GITLAB_EVENT :
109
- case ReleaseEvent .JOB_HOOK_X_GITLAB_EVENT :
108
+ case DeploymentEvent .X_GITLAB_EVENT :
109
+ case ReleaseEvent .X_GITLAB_EVENT :
110
110
break ;
111
111
112
112
default :
You can’t perform that action at this time.
0 commit comments