mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-04 17:24:48 +00:00
18 lines
491 B
Go
18 lines
491 B
Go
package dto
|
|
|
|
import "github.com/pocket-id/pocket-id/backend/internal/utils"
|
|
|
|
type OneTimeAccessTokenCreateDto struct {
|
|
UserID string `json:"userId"`
|
|
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"`
|
|
}
|