From 33f354c71c2c612b6e110700de0aba1cb6511d1b Mon Sep 17 00:00:00 2001 From: Alireza Ahmadi Date: Thu, 2 Mar 2023 12:54:38 +0100 Subject: [PATCH] Update backend Client model --- database/model/model.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/database/model/model.go b/database/model/model.go index 25e0cd41..d0b8bcfc 100644 --- a/database/model/model.go +++ b/database/model/model.go @@ -68,9 +68,10 @@ type Setting struct { type Client struct { ID string `json:"id"` + Password string `json:"password"` + Flow string `json:"flow"` AlterIds uint16 `json:"alterId"` Email string `json:"email"` - Security string `json:"security"` TotalGB int64 `json:"totalGB" form:"totalGB"` ExpiryTime int64 `json:"expiryTime" form:"expiryTime"` }