59 lines
1.4 KiB
Go
59 lines
1.4 KiB
Go
package model
|
|
|
|
// The User holds information about the credentials of a user and its application and client tokens.
|
|
type User struct {
|
|
ID uint `gorm:"primary_key;unique_index;AUTO_INCREMENT"`
|
|
Name string `gorm:"type:varchar(180);unique_index"`
|
|
Pass []byte
|
|
Admin bool
|
|
Applications []Application
|
|
Clients []Client
|
|
Plugins []PluginConf
|
|
}
|
|
|
|
// UserExternal Model
|
|
//
|
|
// The User holds information about permission and other stuff.
|
|
//
|
|
// swagger:model User
|
|
type UserExternal struct {
|
|
// The user id.
|
|
//
|
|
// read only: true
|
|
// required: true
|
|
// example: 25
|
|
ID uint `json:"id"`
|
|
// The user name. For login.
|
|
//
|
|
// required: true
|
|
// example: unicorn
|
|
Name string `binding:"required" json:"name" query:"name" form:"name"`
|
|
// If the user is an administrator.
|
|
//
|
|
// example: true
|
|
Admin bool `json:"admin" form:"admin" query:"admin"`
|
|
}
|
|
|
|
// UserExternalWithPass Model
|
|
//
|
|
// The UserWithPass holds information about the credentials and other stuff.
|
|
//
|
|
// swagger:model UserWithPass
|
|
type UserExternalWithPass struct {
|
|
UserExternal
|
|
UserExternalPass
|
|
}
|
|
|
|
// UserExternalPass Model
|
|
//
|
|
// The Password for updating the user.
|
|
//
|
|
// swagger:model UserPass
|
|
type UserExternalPass struct {
|
|
// The user password. For login.
|
|
//
|
|
// required: true
|
|
// example: nrocinu
|
|
Pass string `json:"pass,omitempty" form:"pass" query:"pass" binding:"required"`
|
|
}
|