40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
|
|
package handler
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
|
||
|
|
"github.com/gin-gonic/gin"
|
||
|
|
|
||
|
|
"github.com/user-management-system/internal/service"
|
||
|
|
)
|
||
|
|
|
||
|
|
// WebhookHandler handles webhook requests
|
||
|
|
type WebhookHandler struct {
|
||
|
|
webhookService *service.WebhookService
|
||
|
|
}
|
||
|
|
|
||
|
|
// NewWebhookHandler creates a new WebhookHandler
|
||
|
|
func NewWebhookHandler(webhookService *service.WebhookService) *WebhookHandler {
|
||
|
|
return &WebhookHandler{webhookService: webhookService}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *WebhookHandler) CreateWebhook(c *gin.Context) {
|
||
|
|
c.JSON(http.StatusOK, gin.H{"message": "webhook creation not implemented"})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *WebhookHandler) ListWebhooks(c *gin.Context) {
|
||
|
|
c.JSON(http.StatusOK, gin.H{"webhooks": []interface{}{}})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *WebhookHandler) UpdateWebhook(c *gin.Context) {
|
||
|
|
c.JSON(http.StatusOK, gin.H{"message": "webhook update not implemented"})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *WebhookHandler) DeleteWebhook(c *gin.Context) {
|
||
|
|
c.JSON(http.StatusOK, gin.H{"message": "webhook deletion not implemented"})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *WebhookHandler) GetWebhookDeliveries(c *gin.Context) {
|
||
|
|
c.JSON(http.StatusOK, gin.H{"deliveries": []interface{}{}})
|
||
|
|
}
|