openapi: generate
This commit is contained in:
parent
49db6e35ce
commit
299f994f32
@ -150,9 +150,9 @@ func (s *Script) Validate() error {
|
||||
var failures []validate.FieldError
|
||||
if err := func() error {
|
||||
if err := (validate.String{
|
||||
MinLength: 64,
|
||||
MinLengthSet: true,
|
||||
MaxLength: 64,
|
||||
MinLength: 0,
|
||||
MinLengthSet: false,
|
||||
MaxLength: 128,
|
||||
MaxLengthSet: true,
|
||||
Email: false,
|
||||
Hostname: false,
|
||||
@ -219,9 +219,9 @@ func (s *ScriptCreate) Validate() error {
|
||||
var failures []validate.FieldError
|
||||
if err := func() error {
|
||||
if err := (validate.String{
|
||||
MinLength: 64,
|
||||
MinLengthSet: true,
|
||||
MaxLength: 64,
|
||||
MinLength: 0,
|
||||
MinLengthSet: false,
|
||||
MaxLength: 128,
|
||||
MaxLengthSet: true,
|
||||
Email: false,
|
||||
Hostname: false,
|
||||
@ -340,9 +340,9 @@ func (s *ScriptUpdate) Validate() error {
|
||||
if value, ok := s.Name.Get(); ok {
|
||||
if err := func() error {
|
||||
if err := (validate.String{
|
||||
MinLength: 64,
|
||||
MinLengthSet: true,
|
||||
MaxLength: 64,
|
||||
MinLength: 0,
|
||||
MinLengthSet: false,
|
||||
MaxLength: 128,
|
||||
MaxLengthSet: true,
|
||||
Email: false,
|
||||
Hostname: false,
|
||||
|
@ -16,9 +16,9 @@ func (s *Script) Validate() error {
|
||||
var failures []validate.FieldError
|
||||
if err := func() error {
|
||||
if err := (validate.String{
|
||||
MinLength: 64,
|
||||
MinLengthSet: true,
|
||||
MaxLength: 64,
|
||||
MinLength: 0,
|
||||
MinLengthSet: false,
|
||||
MaxLength: 128,
|
||||
MaxLengthSet: true,
|
||||
Email: false,
|
||||
Hostname: false,
|
||||
@ -85,9 +85,9 @@ func (s *ScriptCreate) Validate() error {
|
||||
var failures []validate.FieldError
|
||||
if err := func() error {
|
||||
if err := (validate.String{
|
||||
MinLength: 64,
|
||||
MinLengthSet: true,
|
||||
MaxLength: 64,
|
||||
MinLength: 0,
|
||||
MinLengthSet: false,
|
||||
MaxLength: 128,
|
||||
MaxLengthSet: true,
|
||||
Email: false,
|
||||
Hostname: false,
|
||||
|
Loading…
Reference in New Issue
Block a user