fix: terminal process not killed #181

This commit is contained in:
0xJacky 2023-11-04 11:11:01 +08:00
parent 4b75aed9f6
commit 5fcad2311b
No known key found for this signature in database
GPG key ID: B6E4A6E4A561BAF0
12 changed files with 271 additions and 121 deletions

View file

@ -66,7 +66,7 @@ func AddEnvironment(c *gin.Context) {
Name: json.Name,
URL: json.URL,
Token: json.Token,
OperationSync: &json.OperationSync,
OperationSync: json.OperationSync,
SyncApiRegex: json.SyncApiRegex,
}
@ -107,7 +107,7 @@ func EditEnvironment(c *gin.Context) {
Name: json.Name,
URL: json.URL,
Token: json.Token,
OperationSync: &json.OperationSync,
OperationSync: json.OperationSync,
SyncApiRegex: json.SyncApiRegex,
})