added missing error return and fixed comment typo
This commit is contained in:
@@ -34,7 +34,7 @@ func recordAuthImpersonate(e *core.RequestEvent) error {
|
|||||||
|
|
||||||
token, err := record.NewStaticAuthToken(time.Duration(form.Duration) * time.Second)
|
token, err := record.NewStaticAuthToken(time.Duration(form.Duration) * time.Second)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
e.InternalServerError("Failed to generate static auth token", err)
|
return e.InternalServerError("Failed to generate static auth token", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return recordAuthResponse(e, record, token, "", nil)
|
return recordAuthResponse(e, record, token, "", nil)
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ type Provider interface {
|
|||||||
SetUserInfoURL(url string)
|
SetUserInfoURL(url string)
|
||||||
|
|
||||||
// Extra returns a shallow copy of any custom config data
|
// Extra returns a shallow copy of any custom config data
|
||||||
// that the provider may be need.
|
// that the provider may need.
|
||||||
Extra() map[string]any
|
Extra() map[string]any
|
||||||
|
|
||||||
// SetExtra updates the provider's custom config data.
|
// SetExtra updates the provider's custom config data.
|
||||||
|
|||||||
Reference in New Issue
Block a user