Documentation
¶
Index ¶
- Variables
- func NewGetDeviceEndpoint() endpoint.EndpointHandler
- func NewGetRedirectEndpoint() endpoint.EndpointHandler
- func NewGetVerifyCodeEndpoint() endpoint.EndpointHandler
- type CodeVerifier
- type DevicePageData
- type ErrorPage
- type GetDeviceEndpoint
- type GetDeviceRequest
- type GetRedirectEndpoint
- type GetRedirectRequest
- type GetVerifyCodeEndpoint
- type GetVerifyCodeRequest
- type SignedInData
- type Token
- type VerifyCodePageData
Constants ¶
This section is empty.
Variables ¶
View Source
var (
OPENAPI_TAGS = []api.Tag{
{Name: "Browser", Description: "Human UI endpoints"},
}
)
Functions ¶
func NewGetDeviceEndpoint ¶
func NewGetDeviceEndpoint() endpoint.EndpointHandler
func NewGetRedirectEndpoint ¶
func NewGetRedirectEndpoint() endpoint.EndpointHandler
func NewGetVerifyCodeEndpoint ¶
func NewGetVerifyCodeEndpoint() endpoint.EndpointHandler
Types ¶
type CodeVerifier ¶
type CodeVerifier struct {
Value string
}
func (*CodeVerifier) CodeChallengeS256 ¶
func (v *CodeVerifier) CodeChallengeS256() string
type DevicePageData ¶
type GetDeviceEndpoint ¶
func (GetDeviceEndpoint) ServeHTTP ¶
func (ep GetDeviceEndpoint) ServeHTTP(w http.ResponseWriter, r *http.Request)
type GetDeviceRequest ¶
type GetDeviceRequest struct {
Code string `query:"code"`
}
type GetRedirectEndpoint ¶
func (GetRedirectEndpoint) ServeHTTP ¶
func (ep GetRedirectEndpoint) ServeHTTP(w http.ResponseWriter, r *http.Request)
type GetRedirectRequest ¶
type GetVerifyCodeEndpoint ¶
func (GetVerifyCodeEndpoint) ServeHTTP ¶
func (ep GetVerifyCodeEndpoint) ServeHTTP(w http.ResponseWriter, r *http.Request)
type GetVerifyCodeRequest ¶
type GetVerifyCodeRequest struct {
Code string `query:"code" validate:"required"`
}
type SignedInData ¶
type SignedInData struct {
PageTitle string
}
type VerifyCodePageData ¶
Click to show internal directories.
Click to hide internal directories.