Add Fedibird support
This commit is contained in:
parent
af241cfce9
commit
6971f4e40f
3 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
*/
|
||||
export enum FediverseProject {
|
||||
Akkoma = "akkoma",
|
||||
Fedibird = "fedibird",
|
||||
Friendica = "friendica",
|
||||
GNUSocial = "gnusocial",
|
||||
Hometown = "hometown",
|
||||
|
|
Reference in a new issue