feat(net-tool): 添加删除 GitLab Web 钩子功能并优化 del 方法参数
All checks were successful
/ release (push) Successful in 25s

This commit is contained in:
zhaoyingbo 2024-12-20 10:35:55 +00:00
parent e4f940af49
commit 4bad60d556
2 changed files with 11 additions and 1 deletions

View File

@ -24,6 +24,16 @@ class Hook extends GitlabBaseService {
null
)
}
/**
* GitLab Web
* @param {number} hookId ID
* @returns {Promise<ProjectHookSchema | null>}
*/
async delete(hookId: number) {
const URL = `/projects/${this.project_id}/hooks/${hookId}`
return this.errorWarp<ProjectHookSchema | null>(() => this.del(URL), null)
}
}
export default Hook

View File

@ -313,7 +313,7 @@ class NetToolBase {
*/
protected del<T = any>(
url: string,
payload: any,
payload?: any,
queryParams?: any,
additionalHeaders?: any
): Promise<T> {