diff --git a/server/plugin/plg_authenticate_passthrough/index.go b/server/plugin/plg_authenticate_passthrough/index.go index 24151bae..b7c467ab 100644 --- a/server/plugin/plg_authenticate_passthrough/index.go +++ b/server/plugin/plg_authenticate_passthrough/index.go @@ -37,5 +37,7 @@ func (this Admin) EntryPoint(idpParams map[string]string, req *http.Request, res } func (this Admin) Callback(formData map[string]string, idpParams map[string]string, res http.ResponseWriter) (map[string]string, error) { - return map[string]string{}, nil + return map[string]string{ + "user": "anonymous", + }, nil }