forked from pocketbase/pocketbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
share auth providers UI configurations
- Loading branch information
1 parent
f0b57c6
commit f56c52a
Showing
3 changed files
with
59 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// Object list with all supported OAuth2 providers in the format: | ||
// ``` | ||
// { settingsKey: { title, icon, selfHosted } } | ||
// ``` | ||
export default { | ||
googleAuth: { | ||
title: "Google", | ||
icon: "ri-google-line", | ||
}, | ||
facebookAuth: { | ||
title: "Facebook", | ||
icon: "ri-facebook-line", | ||
}, | ||
twitterAuth: { | ||
title: "Twitter", | ||
icon: "ri-twitter-line", | ||
}, | ||
githubAuth: { | ||
title: "GitHub", | ||
icon: "ri-github-line", | ||
}, | ||
gitlabAuth: { | ||
title: "GitLab", | ||
icon: "ri-gitlab-line", | ||
selfHosted: true, | ||
}, | ||
discordAuth: { | ||
title: "Discord", | ||
icon: "ri-discord-line", | ||
}, | ||
}; |