initial commit. phase 1 complete

This commit is contained in:
2026-05-05 20:45:19 +02:00
parent d9c68313a0
commit 89e058ffac
20631 changed files with 3224610 additions and 43 deletions
+37
View File
@@ -0,0 +1,37 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = LINE;
function LINE(options) {
return {
id: "line",
name: "LINE",
type: "oauth",
authorization: {
params: {
scope: "openid profile"
}
},
idToken: true,
wellKnown: "https://access.line.me/.well-known/openid-configuration",
profile(profile) {
return {
id: profile.sub,
name: profile.name,
email: profile.email,
image: profile.picture
};
},
client: {
id_token_signed_response_alg: "HS256"
},
style: {
logo: "/line.svg",
bg: "#00C300",
text: "#fff"
},
options
};
}