mirror of
https://github.com/grafana/grafana.git
synced 2025-08-15 00:21:45 +08:00

* add password service interface * add password service implementation * add tests for password service * add password service wiring * add feature toggle * Rework from service interface to static function * Replace previous password validations * Add codeowners to password service * add error logs * update config files --------- Co-authored-by: Karl Persson <kalle.persson@grafana.com>
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
package dtos
|
|
|
|
import "github.com/grafana/grafana/pkg/services/user"
|
|
|
|
type SignUpForm struct {
|
|
Email string `json:"email" binding:"Required"`
|
|
}
|
|
|
|
type SignUpStep2Form struct {
|
|
Email string `json:"email"`
|
|
Name string `json:"name"`
|
|
Username string `json:"username"`
|
|
Password user.Password `json:"password"`
|
|
Code string `json:"code"`
|
|
OrgName string `json:"orgName"`
|
|
}
|
|
|
|
type AdminCreateUserForm struct {
|
|
Email string `json:"email"`
|
|
Login string `json:"login"`
|
|
Name string `json:"name"`
|
|
Password user.Password `json:"password" binding:"Required"`
|
|
OrgId int64 `json:"orgId"`
|
|
}
|
|
|
|
type AdminUpdateUserPasswordForm struct {
|
|
Password user.Password `json:"password" binding:"Required"`
|
|
}
|
|
|
|
type AdminUpdateUserPermissionsForm struct {
|
|
IsGrafanaAdmin bool `json:"isGrafanaAdmin"`
|
|
}
|
|
|
|
type SendResetPasswordEmailForm struct {
|
|
UserOrEmail string `json:"userOrEmail" binding:"Required"`
|
|
}
|
|
|
|
type ResetUserPasswordForm struct {
|
|
Code string `json:"code"`
|
|
NewPassword user.Password `json:"newPassword"`
|
|
ConfirmPassword user.Password `json:"confirmPassword"`
|
|
}
|
|
|
|
type UserLookupDTO struct {
|
|
UserID int64 `json:"userId"`
|
|
Login string `json:"login"`
|
|
AvatarURL string `json:"avatarUrl"`
|
|
}
|