From 22c1bbd1955c2ac85f2cfb55180ad5c6fa257741 Mon Sep 17 00:00:00 2001 From: Javad Tinatpak Date: Tue, 6 Aug 2024 17:45:36 +0330 Subject: [PATCH] fixed --- web/controller/inbound.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/controller/inbound.go b/web/controller/inbound.go index 9bd4ed88..7c8f95ab 100644 --- a/web/controller/inbound.go +++ b/web/controller/inbound.go @@ -18,7 +18,6 @@ type InboundController struct { } type AddClientPayload struct { - Id int `json:"id"` Settings string `json:"settings"` InboundIds []int `json:"inboundIds"` } @@ -205,7 +204,6 @@ func (a *InboundController) addClientToMultipleInbounds(c *gin.Context) { } data := &model.Inbound{ - Id: payload.Id, Settings: payload.Settings, }