syntax
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
chapeau 2023-10-21 22:05:06 +02:00
parent b573e58961
commit 02370002aa

View file

@ -17,9 +17,9 @@ func (c *RefuseAllConfig) Open(id string, logger log.Logger) (connector.Connecto
type RefuseAllConnector struct{}
func (m *RefuseAllConnector) LoginURL(s connector.Scopes, callbackURL, state string) (string, error) {
return "", fmt.Errorf("You shouldn't use this function")
return "", fmt.Errorf("you shouldn't use this function")
}
func (m *RefuseAllConnector) HandleCallback(s connector.Scopes, r *http.Request) (identity connector.Identity, err error) {
return connector.Identity{}, fmt.Errorf("You shouldn't use this function")
return connector.Identity{}, fmt.Errorf("you shouldn't use this function")
}