This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2021-12-14 06:15:27 -08:00
|
|
|
export const socialProviders = {
|
2021-12-14 08:09:06 -08:00
|
|
|
mastodon: {
|
|
|
|
name: 'Mastodon',
|
|
|
|
instanceRequired: true,
|
2021-12-15 10:30:02 -08:00
|
|
|
linkRegex: (p) => `^https?://(?:www.)?${p.name.split('@')[1]}/(?:(?:web/)?@|users/)?${p.name.split('@')[0]}/?$`,
|
2021-12-14 08:09:06 -08:00
|
|
|
},
|
2021-12-14 06:15:27 -08:00
|
|
|
twitter: {
|
|
|
|
name: 'Twitter',
|
|
|
|
linkRegex: (p) => `^https?://(?:www.)?twitter.com/${p.name}/?$`,
|
|
|
|
},
|
2021-12-14 08:09:06 -08:00
|
|
|
discord: {
|
|
|
|
name: 'Discord',
|
|
|
|
},
|
2021-12-14 06:15:27 -08:00
|
|
|
facebook: {
|
|
|
|
name: 'Facebook',
|
|
|
|
},
|
|
|
|
google: {
|
|
|
|
name: 'Google',
|
|
|
|
},
|
|
|
|
}
|