/** *
( options: OAuthUserConfig
): OAuthConfig
{ return { id: "gitlab", name: "GitLab", type: "oauth", authorization: "https://gitlab.com/oauth/authorize?scope=read_user", token: "https://gitlab.com/oauth/token", userinfo: "https://gitlab.com/api/v4/user", profile(profile) { return { id: profile.id.toString(), name: profile.name ?? profile.username, email: profile.email, image: profile.avatar_url, } }, style: { bg: "#FC6D26", text: "#fff" }, options, } }