0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-11-06 21:00:52 +01:00

fix: i forgor to run lint again after changing the struct names. unchanged the names

This commit is contained in:
imgurbot12 2025-10-29 00:49:23 -07:00
parent 4130feb124
commit b4efc0e726
No known key found for this signature in database

View File

@ -23,9 +23,9 @@ var (
filenameRegex = regexp.MustCompile(`\A[-_+=:;.()\[\]{}~!@#$%^& \w]+\z`) filenameRegex = regexp.MustCompile(`\A[-_+=:;.()\[\]{}~!@#$%^& \w]+\z`)
) )
// GenericPackageFileInfo represents information about an existing package file // PackageFileInfo represents information about an existing package file
// swagger:model // swagger:model
type GenericPackageFileInfo struct { type PackageFileInfo struct {
// Name of package file // Name of package file
Name string `json:"name"` Name string `json:"name"`
// swagger:strfmt date-time // swagger:strfmt date-time
@ -33,15 +33,15 @@ type GenericPackageFileInfo struct {
CreatedUnix timeutil.TimeStamp `json:"created"` CreatedUnix timeutil.TimeStamp `json:"created"`
} }
// GenericPackageInfo represents information about an existing package file // PackageInfo represents information about an existing package file
// swagger:model // swagger:model
type GenericPackageInfo struct { type PackageInfo struct {
/// Version linked to package information /// Version linked to package information
Version string `json:"version"` Version string `json:"version"`
/// Download count for files within version /// Download count for files within version
DownloadCount int64 `json:"downloads"` DownloadCount int64 `json:"downloads"`
/// Files uploaded for package version /// Files uploaded for package version
Files []GenericPackageFileInfo `json:"files"` Files []PackageFileInfo `json:"files"`
} }
func apiError(ctx *context.Context, status int, obj any) { func apiError(ctx *context.Context, status int, obj any) {
@ -61,7 +61,7 @@ func EnumeratePackageVersions(ctx *context.Context) {
return return
} }
var info []GenericPackageInfo var info []PackageInfo
for _, pv := range pvs { for _, pv := range pvs {
packageFiles, err := packages_model.GetFilesByVersionID(ctx, pv.ID) packageFiles, err := packages_model.GetFilesByVersionID(ctx, pv.ID)
if err != nil { if err != nil {
@ -69,15 +69,15 @@ func EnumeratePackageVersions(ctx *context.Context) {
return return
} }
var files []GenericPackageFileInfo var files []PackageFileInfo
for _, file := range packageFiles { for _, file := range packageFiles {
files = append(files, GenericPackageFileInfo{ files = append(files, PackageFileInfo{
Name: file.Name, Name: file.Name,
CreatedUnix: file.CreatedUnix, CreatedUnix: file.CreatedUnix,
}) })
} }
info = append(info, GenericPackageInfo{ info = append(info, PackageInfo{
Version: pv.Version, Version: pv.Version,
DownloadCount: pv.DownloadCount, DownloadCount: pv.DownloadCount,
Files: files, Files: files,