summaryrefslogtreecommitdiff
path: root/types
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-02-11 14:53:34 +0530
committerBobby <[email protected]>2026-02-11 14:53:34 +0530
commit3360be86fb6a595659c17f272d0c6072e512c154 (patch)
tree4b78aa8120909b596f219a0159a3532200a05b1a /types
parentd87e08e0fc5911b2ff40604944448e1f0aaa31b7 (diff)
downloadcafe-3360be86fb6a595659c17f272d0c6072e512c154.tar.xz
cafe-3360be86fb6a595659c17f272d0c6072e512c154.zip
Implement OpenID authentication flow, including user session management and user info retrieval
Diffstat (limited to 'types')
-rw-r--r--types/openid.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/types/openid.go b/types/openid.go
new file mode 100644
index 0000000..e344c6a
--- /dev/null
+++ b/types/openid.go
@@ -0,0 +1,13 @@
+package types
+
+type UserInfo struct {
+ Sub string `json:"sub"`
+ Email string `json:"email"`
+ EmailVerified bool `json:"email_verified"`
+ Name string `json:"name"`
+ PreferredUsername string `json:"preferred_username"`
+ GivenName string `json:"given_name"`
+ FamilyName string `json:"family_name"`
+ Picture string `json:"picture"`
+ Groups []string `json:"groups"`
+}