Add Mastodon widget

This commit is contained in:
Pablo Garcia de los Salmones Valencia 2022-09-20 03:41:10 +02:00
parent 539e0f005a
commit 586ded6b3f
No known key found for this signature in database
GPG key ID: 0672D5575556C568
5 changed files with 46 additions and 0 deletions

View file

@ -27,6 +27,7 @@ import Gotify from "./widgets/service/gotify";
import Prowlarr from "./widgets/service/prowlarr";
import Jackett from "./widgets/service/jackett";
import AdGuard from "./widgets/service/adguard";
import Mastodon from "./widgets/service/mastodon";
const widgetMappings = {
docker: Docker,
@ -56,6 +57,7 @@ const widgetMappings = {
prowlarr: Prowlarr,
jackett: Jackett,
adguard: AdGuard,
mastodon: Mastodon,
};
export default function Widget({ service }) {