issueCommitHandler save record into `issue_commits` table
(record map[string]interface{})
| 435 | |
| 436 | // issueCommitHandler save record into `issue_commits` table |
| 437 | func (s *Service) issueCommitHandler(record map[string]interface{}) errors.Error { |
| 438 | return s.dal.CreateWithMap(&crossdomain.IssueCommit{}, record) |
| 439 | } |
| 440 | |
| 441 | // ImportQaApis imports csv file to the table `qa_apis` |
| 442 | func (s *Service) ImportQaApis(qaProjectId string, file io.ReadCloser, incremental bool) errors.Error { |
nothing calls this directly
no test coverage detected