mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	* Add API to get/edit wiki * Add swagger docs, various improvements * fmt * Fix lint and rm comment * Add page parameter * Add pagination to pages * Add tests * fmt * Update func names * Update error handling * Update type name * Fix lint * Don't delete Home * Update func name * Update routers/api/v1/repo/wiki.go Co-authored-by: delvh <dev.lh@web.de> * Remove unnecessary check * Fix lint * Use English strings * Update integrations/api_wiki_test.go Co-authored-by: delvh <dev.lh@web.de> * Update func and test names * Remove unsed check and avoid duplicated error reports * Improve error handling * Return after error * Document 404 error * Update swagger * Fix lint * Apply suggestions from code review Co-authored-by: delvh <dev.lh@web.de> * Document file encoding * fmt * Apply suggestions * Use convert * Fix integration test * simplify permissions * unify duplicate key Title/Name * improve types & return UTC timestamps * improve types pt.2 - add WikiPageMetaData.LastCommit - add WikiPageMetaData.HTMLURL - replace WikiPageMetaData.Updated with .LastCommit.Committer.Created also delete convert.ToWikiPage(), as it received too many arguments and only had one callsite anyway. sorry for bad advice earlier 🙃 * WikiPage.Content is base64 encoded * simplify error handling in wikiContentsByName() * update swagger * fix & DRY findWikiRepoCommit() error handling ListWikiPages() previously wrote error twice when repo wiki didn't exist * rename Content -> ContentBase64 * Fix test * Fix tests * Update var name * suburl -> sub_url Co-authored-by: delvh <dev.lh@web.de> Co-authored-by: Norwin <git@nroo.de> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
		
			
				
	
	
		
			176 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			176 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2017 The Gitea Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a MIT-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
package swagger
 | 
						|
 | 
						|
import (
 | 
						|
	api "code.gitea.io/gitea/modules/structs"
 | 
						|
	"code.gitea.io/gitea/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
 | 
						|
	AddCollaboratorOption api.AddCollaboratorOption
 | 
						|
 | 
						|
	// 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
 | 
						|
	IssueLabelsOption api.IssueLabelsOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateKeyOption api.CreateKeyOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateLabelOption api.CreateLabelOption
 | 
						|
	// in:body
 | 
						|
	EditLabelOption api.EditLabelOption
 | 
						|
 | 
						|
	// 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
 | 
						|
	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
 | 
						|
	MigrateRepoForm forms.MigrateRepoForm
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditAttachmentOptions api.EditAttachmentOptions
 | 
						|
 | 
						|
	// 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
 | 
						|
	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
 | 
						|
	CreateAccessTokenOption api.CreateAccessTokenOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	UserSettingsOptions api.UserSettingsOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateWikiPageOptions api.CreateWikiPageOptions
 | 
						|
}
 |