@Summary Include File from Directory @Description Allows automatic processing of .changes file controlling package upload (uploaded using File Upload API) to the local repository. i.e. Exposes repo include command in api. @Tags Repos @Param name path string true "Repository name" @Param dir path str
(c *gin.Context)
| 890 | // @Failure 404 {object} Error "Not Found" |
| 891 | // @Router /api/repos/{name}/include/{dir}/{file} [post] |
| 892 | func apiReposIncludePackageFromFile(c *gin.Context) { |
| 893 | // redirect all work to dir method |
| 894 | apiReposIncludePackageFromDir(c) |
| 895 | } |
| 896 | |
| 897 | type reposIncludePackageFromDirResponse struct { |
| 898 | Report *aptly.RecordingResultReporter |
nothing calls this directly
no test coverage detected