Skip to content

Commit

Permalink
fix: 更改删除webhook时的反馈
Browse files Browse the repository at this point in the history
  • Loading branch information
rehiy committed Apr 1, 2024
1 parent 4d741c3 commit cd3c326
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wclient/robot/handler_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ func webhookHandler() []*Handler {
}
res := webhook.Delete(&webhook.DeleteWebhookParam{TargetId: target})
if res != nil {
return "删除失败," + res.Error()
return "webhook 删除失败," + res.Error()
}
return "删除成功"
return "webhook 删除成功"
},
})

Expand Down

0 comments on commit cd3c326

Please sign in to comment.