pocketbase/ui/src/providers.js

32 lines
690 B
JavaScript
Raw Normal View History

2022-09-01 20:49:00 +08:00
// Object list with all supported OAuth2 providers in the format:
// ```
// { settingsKey: { title, icon, selfHosted } }
// ```
export default {
googleAuth: {
title: "Google",
icon: "ri-google-fill",
2022-09-01 20:49:00 +08:00
},
facebookAuth: {
title: "Facebook",
icon: "ri-facebook-fill",
2022-09-01 20:49:00 +08:00
},
twitterAuth: {
title: "Twitter",
icon: "ri-twitter-fill",
2022-09-01 20:49:00 +08:00
},
githubAuth: {
title: "GitHub",
icon: "ri-github-fill",
2022-09-01 20:49:00 +08:00
},
gitlabAuth: {
title: "GitLab",
icon: "ri-gitlab-fill",
2022-09-01 20:49:00 +08:00
selfHosted: true,
},
discordAuth: {
title: "Discord",
icon: "ri-discord-fill",
2022-09-01 20:49:00 +08:00
},
};