This is an automated email from the ASF dual-hosted git repository.
klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new effde1fb1 fix: mount api for customize plugin (#8417)
effde1fb1 is described below
commit effde1fb1f1c833ac65626b24fb8fa5c02dfe0f3
Author: NaRro <[email protected]>
AuthorDate: Wed Apr 30 07:09:30 2025 +0000
fix: mount api for customize plugin (#8417)
#8393
---
backend/plugins/customize/impl/impl.go | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/backend/plugins/customize/impl/impl.go
b/backend/plugins/customize/impl/impl.go
index facb0515d..599b02c60 100644
--- a/backend/plugins/customize/impl/impl.go
+++ b/backend/plugins/customize/impl/impl.go
@@ -108,5 +108,14 @@ func (p Customize) ApiResources()
map[string]map[string]plugin.ApiResourceHandle
"csvfiles/issue_repo_commits.csv": {
"POST": handlers.ImportIssueRepoCommit,
},
+ "csvfiles/qa_apis.csv": {
+ "POST": handlers.ImportQaApis,
+ },
+ "csvfiles/qa_test_cases.csv": {
+ "POST": handlers.ImportQaTestCases,
+ },
+ "csvfiles/qa_test_case_executions.csv": {
+ "POST": handlers.ImportQaTestCaseExecutions,
+ },
}
}