mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-22 22:00:08 +00:00
17 lines
445 B
Go
17 lines
445 B
Go
package dto
|
|
|
|
import "github.com/pocket-id/pocket-id/backend/internal/utils"
|
|
|
|
type OneTimeAccessTokenCreateDto struct {
|
|
TTL utils.JSONDuration `json:"ttl" binding:"ttl"`
|
|
}
|
|
|
|
type OneTimeAccessEmailAsUnauthenticatedUserDto struct {
|
|
Email string `json:"email" binding:"required,email" unorm:"nfc"`
|
|
RedirectPath string `json:"redirectPath"`
|
|
}
|
|
|
|
type OneTimeAccessEmailAsAdminDto struct {
|
|
TTL utils.JSONDuration `json:"ttl" binding:"ttl"`
|
|
}
|