This commit is contained in:
2026-06-05 17:14:39 +03:00
parent e9adcfec1c
commit fea00bbb42
157 changed files with 4837 additions and 251 deletions

View File

@@ -18,9 +18,8 @@ type CreateRequest struct {
EmailAddress string `url:"emailaddress" json:"emailaddress" validate:"required"`
// Password of user
// Required: false
// Default: strongpassword
Password string `url:"password,omitempty" json:"password,omitempty"`
// Required: true
Password string `url:"password" json:"password" validate:"required"`
// List of apiaccess groups this user belongs to.
// Required: false

View File

@@ -54,9 +54,6 @@ type ItemUser struct {
// Mobile
Mobile []interface{} `json:"mobile"`
// Password
Password string `json:"passwd"`
// Protected
Protected bool `json:"protected"`