add bubble config

This commit is contained in:
FloatingGhost 2022-07-22 13:07:20 +01:00
parent 4571d372b8
commit 0795cba2d9
2 changed files with 8 additions and 1 deletions

View File

@ -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: [

View File

@ -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"]
}
]
},