1831b3b571
* Feature - #5960 - API Endpoint for Repo Editing * Revert from merge * Adds integration testing * Updates to integration tests * Revert changes * Update year in file header * Misspell fix * XORM = test * XORM = test * revert XORM = file * Makes RepoUnit.ID be pk and autoincr * Fix to units * revert header * Remove print statement * Adds other responses * Improves swagger for creating repo * Fixes import order * Better Unit Type does not exist error * Adds editable repo properties to the response repo structure * Fix to api_repo_edit_test.go * Fixes repo test * Changes per review * Fixes typo and standardizes comments in the EditRepoOption struct for swagger * Fixes typo and standardizes comments in the EditRepoOption struct for swagger * Actually can unarchive through the API * Unlike delete, user doesn't have to be the owner of the org, just admin to the repo * Fix to swagger comments for field name change * Update to swagger docs * Update swagger * Changes allow_pull_requests to has_pull_requests
120 lines
2.5 KiB
Go
120 lines
2.5 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 (
|
|
"code.gitea.io/gitea/modules/auth"
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
)
|
|
|
|
// 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 auth.MergePullRequestForm
|
|
|
|
// in:body
|
|
CreateReleaseOption api.CreateReleaseOption
|
|
// in:body
|
|
EditReleaseOption api.EditReleaseOption
|
|
|
|
// in:body
|
|
CreateRepoOption api.CreateRepoOption
|
|
// in:body
|
|
EditRepoOption api.EditRepoOption
|
|
// in:body
|
|
CreateForkOption api.CreateForkOption
|
|
|
|
// 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 auth.MigrateRepoForm
|
|
|
|
// in:body
|
|
EditAttachmentOptions api.EditAttachmentOptions
|
|
|
|
// in:body
|
|
CreateFileOptions api.CreateFileOptions
|
|
|
|
// in:body
|
|
UpdateFileOptions api.UpdateFileOptions
|
|
|
|
// in:body
|
|
DeleteFileOptions api.DeleteFileOptions
|
|
}
|