mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
		
			
				
	
	
		
			242 lines
		
	
	
	
		
			5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			242 lines
		
	
	
	
		
			5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 The Forgejo Authors. All rights reserved.
 | 
						|
// Copyright 2017 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package swagger
 | 
						|
 | 
						|
import (
 | 
						|
	ffed "forgejo.org/modules/forgefed"
 | 
						|
	api "forgejo.org/modules/structs"
 | 
						|
	"forgejo.org/services/forms"
 | 
						|
)
 | 
						|
 | 
						|
// not actually a response, just a hack to get go-swagger to include definitions
 | 
						|
// of the various XYZOption structs
 | 
						|
 | 
						|
// parameterBodies
 | 
						|
// swagger:response parameterBodies
 | 
						|
type swaggerParameterBodies struct {
 | 
						|
	// in:body
 | 
						|
	ForgeLike ffed.ForgeLike
 | 
						|
 | 
						|
	// in:body
 | 
						|
	AddCollaboratorOption api.AddCollaboratorOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	ReplaceFlagsOption api.ReplaceFlagsOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateEmailOption api.CreateEmailOption
 | 
						|
	// in:body
 | 
						|
	DeleteEmailOption api.DeleteEmailOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateHookOption api.CreateHookOption
 | 
						|
	// in:body
 | 
						|
	EditHookOption api.EditHookOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditGitHookOption api.EditGitHookOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateIssueOption api.CreateIssueOption
 | 
						|
	// in:body
 | 
						|
	EditIssueOption api.EditIssueOption
 | 
						|
	// in:body
 | 
						|
	EditDeadlineOption api.EditDeadlineOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateIssueCommentOption api.CreateIssueCommentOption
 | 
						|
	// in:body
 | 
						|
	EditIssueCommentOption api.EditIssueCommentOption
 | 
						|
	// in:body
 | 
						|
	IssueMeta api.IssueMeta
 | 
						|
 | 
						|
	// in:body
 | 
						|
	IssueLabelsOption api.IssueLabelsOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	DeleteLabelsOption api.DeleteLabelsOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateKeyOption api.CreateKeyOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	RenameUserOption api.RenameUserOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateLabelOption api.CreateLabelOption
 | 
						|
	// in:body
 | 
						|
	EditLabelOption api.EditLabelOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	MarkupOption api.MarkupOption
 | 
						|
	// in:body
 | 
						|
	MarkdownOption api.MarkdownOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateMilestoneOption api.CreateMilestoneOption
 | 
						|
	// in:body
 | 
						|
	EditMilestoneOption api.EditMilestoneOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateOrgOption api.CreateOrgOption
 | 
						|
	// in:body
 | 
						|
	EditOrgOption api.EditOrgOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreatePullRequestOption api.CreatePullRequestOption
 | 
						|
	// in:body
 | 
						|
	EditPullRequestOption api.EditPullRequestOption
 | 
						|
	// in:body
 | 
						|
	MergePullRequestOption forms.MergePullRequestForm
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateReleaseOption api.CreateReleaseOption
 | 
						|
	// in:body
 | 
						|
	EditReleaseOption api.EditReleaseOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateRepoOption api.CreateRepoOption
 | 
						|
	// in:body
 | 
						|
	EditRepoOption api.EditRepoOption
 | 
						|
	// in:body
 | 
						|
	UpdateBranchRepoOption api.UpdateBranchRepoOption
 | 
						|
	// in:body
 | 
						|
	TransferRepoOption api.TransferRepoOption
 | 
						|
	// in:body
 | 
						|
	CreateForkOption api.CreateForkOption
 | 
						|
	// in:body
 | 
						|
	GenerateRepoOption api.GenerateRepoOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateStatusOption api.CreateStatusOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateTeamOption api.CreateTeamOption
 | 
						|
	// in:body
 | 
						|
	EditTeamOption api.EditTeamOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	AddTimeOption api.AddTimeOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateUserOption api.CreateUserOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditUserOption api.EditUserOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditAttachmentOptions api.EditAttachmentOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	ChangeFilesOptions api.ChangeFilesOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateFileOptions api.CreateFileOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	UpdateFileOptions api.UpdateFileOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	DeleteFileOptions api.DeleteFileOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CommitDateOptions api.CommitDateOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	RepoTopicOptions api.RepoTopicOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditReactionOption api.EditReactionOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateBranchRepoOption api.CreateBranchRepoOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateBranchProtectionOption api.CreateBranchProtectionOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditBranchProtectionOption api.EditBranchProtectionOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateOAuth2ApplicationOptions api.CreateOAuth2ApplicationOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreatePullReviewOptions api.CreatePullReviewOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreatePullReviewComment api.CreatePullReviewComment
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreatePullReviewCommentOptions api.CreatePullReviewCommentOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	SubmitPullReviewOptions api.SubmitPullReviewOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	DismissPullReviewOptions api.DismissPullReviewOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	MigrateRepoOptions api.MigrateRepoOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	PullReviewRequestOptions api.PullReviewRequestOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateTagOption api.CreateTagOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateTagProtectionOption api.CreateTagProtectionOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditTagProtectionOption api.EditTagProtectionOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateAccessTokenOption api.CreateAccessTokenOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	UserSettingsOptions api.UserSettingsOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateWikiPageOptions api.CreateWikiPageOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreatePushMirrorOption api.CreatePushMirrorOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	UpdateUserAvatarOptions api.UpdateUserAvatarOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	UpdateRepoAvatarOptions api.UpdateRepoAvatarOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateOrUpdateSecretOption api.CreateOrUpdateSecretOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateVariableOption api.CreateVariableOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	RenameOrgOption api.RenameOrgOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	UpdateVariableOption api.UpdateVariableOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	DispatchWorkflowOption api.DispatchWorkflowOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateQuotaGroupOptions api.CreateQuotaGroupOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateQuotaRuleOptions api.CreateQuotaRuleOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditQuotaRuleOptions api.EditQuotaRuleOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	SetUserQuotaGroupsOptions api.SetUserQuotaGroupsOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	NoteOptions api.NoteOptions
 | 
						|
}
 |