2018-06-13 13:45:22 +02:00
|
|
|
package swagger
|
|
|
|
|
2018-07-25 16:24:46 +02:00
|
|
|
import "code.vikunja.io/api/models"
|
2018-06-13 13:45:22 +02:00
|
|
|
|
|
|
|
// 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
|
|
|
|
UserLogin models.UserLogin
|
|
|
|
|
|
|
|
// in:body
|
2018-07-10 14:02:23 +02:00
|
|
|
APIUserPassword models.APIUserPassword
|
2018-06-13 13:45:22 +02:00
|
|
|
|
|
|
|
// in:body
|
|
|
|
List models.List
|
|
|
|
|
|
|
|
// in:body
|
2018-08-30 08:09:17 +02:00
|
|
|
ListTask models.ListTask
|
2018-07-03 08:48:28 +02:00
|
|
|
|
|
|
|
// in:body
|
|
|
|
Namespace models.Namespace
|
2018-08-29 15:13:54 +02:00
|
|
|
|
|
|
|
// in:body
|
|
|
|
Team models.Team
|
|
|
|
|
|
|
|
// in:body
|
|
|
|
TeamMember models.TeamMember
|
|
|
|
|
|
|
|
// in:body
|
|
|
|
TeamList models.TeamList
|
|
|
|
|
|
|
|
// in:body
|
|
|
|
TeamNamespace models.TeamNamespace
|
2018-09-17 08:22:31 +02:00
|
|
|
|
|
|
|
// in:body
|
|
|
|
ListUser models.ListUser
|
|
|
|
|
|
|
|
// in:body
|
|
|
|
NamespaceUser models.NamespaceUser
|
2018-10-27 11:33:28 +02:00
|
|
|
|
|
|
|
// in:body
|
|
|
|
PasswordReset models.PasswordReset
|
|
|
|
|
|
|
|
// in:body
|
|
|
|
PasswordTokenRequest models.PasswordTokenRequest
|
2018-06-13 13:45:22 +02:00
|
|
|
}
|