2017-11-13 12:32:25 +05:30
|
|
|
// 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
|
|
|
|
|
2018-05-31 16:43:55 +05:30
|
|
|
// parameterBodies
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:response parameterBodies
|
|
|
|
type swaggerParameterBodies struct {
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
AddCollaboratorOption api.AddCollaboratorOption
|
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateEmailOption api.CreateEmailOption
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
DeleteEmailOption api.DeleteEmailOption
|
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateHookOption api.CreateHookOption
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
|
|
|
EditHookOption api.EditHookOption
|
2017-11-13 12:32:25 +05:30
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateIssueOption api.CreateIssueOption
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
|
|
|
EditIssueOption api.EditIssueOption
|
2018-07-16 18:13:00 +05:30
|
|
|
// in:body
|
|
|
|
EditDeadlineOption api.EditDeadlineOption
|
2017-11-13 12:32:25 +05:30
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateIssueCommentOption api.CreateIssueCommentOption
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
|
|
|
EditIssueCommentOption api.EditIssueCommentOption
|
2017-11-13 12:32:25 +05:30
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
IssueLabelsOption api.IssueLabelsOption
|
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateKeyOption api.CreateKeyOption
|
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateLabelOption api.CreateLabelOption
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
|
|
|
EditLabelOption api.EditLabelOption
|
2017-11-13 12:32:25 +05:30
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
MarkdownOption api.MarkdownOption
|
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateMilestoneOption api.CreateMilestoneOption
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
|
|
|
EditMilestoneOption api.EditMilestoneOption
|
2017-11-13 12:32:25 +05:30
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateOrgOption api.CreateOrgOption
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
|
|
|
EditOrgOption api.EditOrgOption
|
2017-11-13 12:32:25 +05:30
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreatePullRequestOption api.CreatePullRequestOption
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
|
|
|
EditPullRequestOption api.EditPullRequestOption
|
2019-02-08 13:38:38 +05:30
|
|
|
// in:body
|
|
|
|
MergePullRequestOption auth.MergePullRequestForm
|
2017-11-13 12:32:25 +05:30
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateReleaseOption api.CreateReleaseOption
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
|
|
|
EditReleaseOption api.EditReleaseOption
|
2017-11-13 12:32:25 +05:30
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateRepoOption api.CreateRepoOption
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateForkOption api.CreateForkOption
|
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateStatusOption api.CreateStatusOption
|
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateTeamOption api.CreateTeamOption
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
|
|
|
EditTeamOption api.EditTeamOption
|
2017-11-13 12:32:25 +05:30
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
AddTimeOption api.AddTimeOption
|
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
CreateUserOption api.CreateUserOption
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
|
|
|
EditUserOption api.EditUserOption
|
2017-11-13 12:32:25 +05:30
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2017-11-13 12:32:25 +05:30
|
|
|
MigrateRepoForm auth.MigrateRepoForm
|
2018-03-06 06:52:16 +05:30
|
|
|
|
2018-06-12 20:29:22 +05:30
|
|
|
// in:body
|
2018-03-06 06:52:16 +05:30
|
|
|
EditAttachmentOptions api.EditAttachmentOptions
|
2017-11-13 12:32:25 +05:30
|
|
|
}
|