All checks were successful
Build and Release / release (push) Successful in 1m6s
39 lines
1.9 KiB
Go
39 lines
1.9 KiB
Go
package request
|
|
|
|
import "time"
|
|
|
|
type UpdateProfileDto struct {
|
|
DisplayName *string `json:"display_name" validate:"omitempty,min=2,max=50"`
|
|
FullName *string `json:"full_name" validate:"omitempty,min=2,max=100"`
|
|
AvatarUrl *string `json:"avatar_url" validate:"omitempty,url,image_url"`
|
|
Bio *string `json:"bio" validate:"omitempty,max=255"`
|
|
Location *string `json:"location" validate:"omitempty,max=100"`
|
|
Website *string `json:"website" validate:"omitempty,url"`
|
|
CountryCode *string `json:"country_code" validate:"omitempty,len=2"`
|
|
Phone *string `json:"phone" validate:"omitempty,min=8,max=20"`
|
|
}
|
|
type ChangePasswordDto struct {
|
|
OldPassword string `json:"old_password" validate:"required,min=8,max=64"`
|
|
NewPassword string `json:"new_password" validate:"required,min=8,max=64,nefield=OldPassword"`
|
|
}
|
|
|
|
type ChangeRoleDto struct {
|
|
Roles []string `json:"role_ids" validate:"required,min=1,dive,required,uuid"`
|
|
}
|
|
|
|
type PaginationDto struct {
|
|
Page int `json:"page" query:"page" validate:"omitempty,min=1"`
|
|
Limit int `json:"limit" query:"limit" validate:"omitempty,min=1,max=100"`
|
|
Order string `json:"order" query:"order" validate:"omitempty,oneof=asc desc"`
|
|
}
|
|
type SearchUserDto struct {
|
|
PaginationDto
|
|
Sort string `json:"sort" query:"sort" validate:"omitempty,oneof=id created_at updated_at email is_deleted auth_provider"`
|
|
Search string `json:"search" query:"search" validate:"omitempty,min=2,max=200"`
|
|
IsDeleted *bool `json:"is_deleted" query:"is_deleted" validate:"omitempty"`
|
|
RoleIDs []string `json:"role_ids" query:"role_ids" validate:"omitempty,dive,uuid"`
|
|
AuthProvider string `json:"auth_provider" query:"auth_provider" validate:"omitempty,oneof=local google facebook github"`
|
|
CreatedFrom *time.Time `json:"created_from" query:"created_from" validate:"omitempty"`
|
|
CreatedTo *time.Time `json:"created_to" query:"created_to" validate:"omitempty"`
|
|
}
|