From 0795cba2d9fdc4e70483ba6b98b0fa65c783e4b4 Mon Sep 17 00:00:00 2001 From: FloatingGhost Date: Fri, 22 Jul 2022 13:07:20 +0100 Subject: [PATCH] add bubble config --- config/config.exs | 3 ++- config/description.exs | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/config/config.exs b/config/config.exs index 0f0daf796..cfe207dcc 100644 --- a/config/config.exs +++ b/config/config.exs @@ -259,7 +259,8 @@ config :pleroma, :instance, show_reactions: true, password_reset_token_validity: 60 * 60 * 24, profile_directory: true, - privileged_staff: false + privileged_staff: false, + local_bubble: [] config :pleroma, :welcome, direct_message: [ diff --git a/config/description.exs b/config/description.exs index 1eb0a4161..c8027f3b4 100644 --- a/config/description.exs +++ b/config/description.exs @@ -947,6 +947,12 @@ config :pleroma, :config_description, [ type: :boolean, description: "Let moderators access sensitive data (e.g. updating user credentials, get password reset token, delete users, index and read private statuses)" + }, + %{ + key: :local_bubble, + type: {:list, :string}, + description: "List of instances that make up your local bubble (closely-related instances). Used to populate the 'bubble' timeline.", + suggestions: ["otp.akkoma.dev"] } ] },