fix: add missing info for openid config

Resolves #304
This commit is contained in:
Lakhan Samani
2023-03-04 16:11:37 +05:30
parent 8863140e75
commit 149d0cac7a
4 changed files with 3 additions and 6 deletions

View File

@@ -2,7 +2,6 @@ package handlers
import (
"encoding/json"
"fmt"
"net/http"
"github.com/gin-gonic/gin"
@@ -50,7 +49,6 @@ func UserInfoHandler() gin.HandlerFunc {
})
return
}
fmt.Println("=> str:", string(userBytes))
res := map[string]interface{}{}
err = json.Unmarshal(userBytes, &res)
if err != nil {