diff --git a/src/plugins/newGuildSettings/index.tsx b/src/plugins/newGuildSettings/index.tsx index e613f7a0..049d2aea 100644 --- a/src/plugins/newGuildSettings/index.tsx +++ b/src/plugins/newGuildSettings/index.tsx @@ -77,6 +77,11 @@ const settings = definePluginSettings({ description: "Show all channels automatically", type: OptionType.BOOLEAN, default: true + }, + mobilePush: { + description: "Mute Mobile Push Notifications automatically", + type: OptionType.BOOLEAN, + default: true } }); @@ -99,6 +104,7 @@ function applyDefaultSettings(guildId: string | null) { updateGuildNotificationSettings(guildId, { muted: settings.store.guild, + mobile_push: settings.store.mobilePush, suppress_everyone: settings.store.everyone, suppress_roles: settings.store.role, mute_scheduled_events: settings.store.events,