Develop #1

Merged
siujamo merged 40 commits from develop into main 2026-06-04 17:40:34 +08:00
4 changed files with 27 additions and 1 deletions
Showing only changes of commit ce330bca87 - Show all commits
@@ -13,7 +13,7 @@ public class FilterConfig {
var registrationBean = new FilterRegistrationBean<WebhookFilter>(); var registrationBean = new FilterRegistrationBean<WebhookFilter>();
registrationBean.setFilter(webhookFilter); registrationBean.setFilter(webhookFilter);
registrationBean.addUrlPatterns("/webhook/*"); registrationBean.addUrlPatterns("/webhooks/*");
registrationBean.setOrder(1); registrationBean.setOrder(1);
return registrationBean; return registrationBean;
@@ -0,0 +1,7 @@
package com.onixbyte.deltaforceguide.domain.dto;
public record GitHubIssueLabeledWebhookRequest(
String action,
GitHubWebhookIssue issue
) {
}
@@ -0,0 +1,13 @@
package com.onixbyte.deltaforceguide.domain.dto;
import java.util.List;
public record GitHubWebhookIssue(
String url,
Long id,
String title,
String body,
List<GitHubWebhookLabel> labels
) {
}
@@ -0,0 +1,6 @@
package com.onixbyte.deltaforceguide.domain.dto;
public record GitHubWebhookLabel(
String name
) {
}