mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	This adds a new options to releases to hide the links to the automatically generated archives. This is useful, when the automatically generated Archives are broken e.g. because of Submodules.   Note: This juts hides the Archives from the UI. Users can still download 5the Archive if they know t correct URL. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3139 Reviewed-by: Otto <otto@codeberg.org> Reviewed-by: 0ko <0ko@noreply.codeberg.org> Co-authored-by: JakobDev <jakobdev@gmx.de> Co-committed-by: JakobDev <jakobdev@gmx.de>
		
			
				
	
	
		
			55 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2016 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package structs
 | |
| 
 | |
| import (
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| // Release represents a repository release
 | |
| type Release struct {
 | |
| 	ID               int64  `json:"id"`
 | |
| 	TagName          string `json:"tag_name"`
 | |
| 	Target           string `json:"target_commitish"`
 | |
| 	Title            string `json:"name"`
 | |
| 	Note             string `json:"body"`
 | |
| 	URL              string `json:"url"`
 | |
| 	HTMLURL          string `json:"html_url"`
 | |
| 	TarURL           string `json:"tarball_url"`
 | |
| 	ZipURL           string `json:"zipball_url"`
 | |
| 	HideArchiveLinks bool   `json:"hide_archive_links"`
 | |
| 	UploadURL        string `json:"upload_url"`
 | |
| 	IsDraft          bool   `json:"draft"`
 | |
| 	IsPrerelease     bool   `json:"prerelease"`
 | |
| 	// swagger:strfmt date-time
 | |
| 	CreatedAt time.Time `json:"created_at"`
 | |
| 	// swagger:strfmt date-time
 | |
| 	PublishedAt          time.Time                `json:"published_at"`
 | |
| 	Publisher            *User                    `json:"author"`
 | |
| 	Attachments          []*Attachment            `json:"assets"`
 | |
| 	ArchiveDownloadCount *TagArchiveDownloadCount `json:"archive_download_count"`
 | |
| }
 | |
| 
 | |
| // CreateReleaseOption options when creating a release
 | |
| type CreateReleaseOption struct {
 | |
| 	// required: true
 | |
| 	TagName          string `json:"tag_name" binding:"Required"`
 | |
| 	Target           string `json:"target_commitish"`
 | |
| 	Title            string `json:"name"`
 | |
| 	Note             string `json:"body"`
 | |
| 	IsDraft          bool   `json:"draft"`
 | |
| 	IsPrerelease     bool   `json:"prerelease"`
 | |
| 	HideArchiveLinks bool   `json:"hide_archive_links"`
 | |
| }
 | |
| 
 | |
| // EditReleaseOption options when editing a release
 | |
| type EditReleaseOption struct {
 | |
| 	TagName          string `json:"tag_name"`
 | |
| 	Target           string `json:"target_commitish"`
 | |
| 	Title            string `json:"name"`
 | |
| 	Note             string `json:"body"`
 | |
| 	IsDraft          *bool  `json:"draft"`
 | |
| 	IsPrerelease     *bool  `json:"prerelease"`
 | |
| 	HideArchiveLinks *bool  `json:"hide_archive_links"`
 | |
| }
 |