strapi-linkedin-auth
Version:
This plugin enables users to integrate Linked In social login using OpenId in strapi.
29 lines (28 loc) • 505 B
JavaScript
module.exports = [
{
method: "POST",
path: "/token",
handler: "linkedinAuthController.getToken",
config: {
policies: [],
middlewares: [],
auth: false,
},
},
{
method: "GET",
path: "/linkedin-config",
handler: "linkedinAuthController.getConfig",
config: {
auth: false,
},
},
{
method: "GET",
path: "/linkedin-auth",
handler: "linkedinAuthController.initiateLinkedInAuth",
config: {
auth: false,
},
},
];