Add Fedibird support

This commit is contained in:
Nikita Karamov 2023-08-26 17:15:27 +02:00
parent af241cfce9
commit 6971f4e40f
No known key found for this signature in database
GPG Key ID: 41D6F71EE78E77CD
3 changed files with 3 additions and 1 deletions

View File

@ -36,6 +36,7 @@ const pleromaSettings = {
};
const PROJECTS: Map<FediverseProject, FediverseProjectData> = new Map()
.set(FediverseProject.Fedibird, mastodonSettings)
.set(FediverseProject.Hometown, mastodonSettings)
.set(FediverseProject.Mastodon, mastodonSettings)
.set(FediverseProject.Misskey, misskeySettings)

View File

@ -36,7 +36,7 @@ const prefilledInstance = searchParameters.get("instance");
</p>
<p><b>Supported projects:</b></p>
<ul>
<li>Mastodon</li>
<li>Mastodon (incl. Hometown and Fedibird)</li>
<li>
Pleroma (incl. Akkoma) <small><b>(new!)</b></small>
</li>

View File

@ -6,6 +6,7 @@
*/
export enum FediverseProject {
Akkoma = "akkoma",
Fedibird = "fedibird",
Friendica = "friendica",
GNUSocial = "gnusocial",
Hometown = "hometown",