1
0
mirror of https://github.com/rancher/types.git synced 2025-08-29 09:02:45 +00:00

Remove required for smtp and add send field

This commit is contained in:
zionwu 2018-04-16 19:57:24 +08:00
parent 021889f4af
commit 2357e6acc1

View File

@ -135,8 +135,9 @@ type Notification struct {
type SMTPConfig struct {
Host string `json:"host,omitempty" norman:"required,type=dnsLabel"`
Port int `json:"port,omitempty" norman:"required,min=1,max=65535,default=465"`
Username string `json:"username,omitempty" norman:"required"`
Password string `json:"password,omitempty" norman:"required"`
Username string `json:"username,omitempty"`
Password string `json:"password,omitempty"`
Sender string `json:"sender,omitempty" norman:"required"`
DefaultRecipient string `json:"defaultRecipient,omitempty" norman:"required"`
TLS bool `json:"tls,omitempty" norman:"required,default=true"`
}