mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
106 lines
2.3 KiB
Go
106 lines
2.3 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/sdk/gitea"
|
|
)
|
|
|
|
// 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
|
|
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
|
|
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
|
|
}
|