diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2021-02-07 22:24:12 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2021-02-07 22:24:12 +0300 |
commit | d1c6dd97aa503ca7c897d67d98fe8c924e113a61 (patch) | |
tree | 337e5fb61f36e458bfdfca4f925b7c063d6348b0 /config | |
parent | 4e14945670bac15a6e183eb8c552d6e0669713ac (diff) | |
download | pleroma-d1c6dd97aa503ca7c897d67d98fe8c924e113a61.tar.gz |
[#3213] Partially addressed code review points.
migration rollback task changes, hashtags-related config handling tweaks, `hashtags.data` deletion (unused).
Diffstat (limited to 'config')
-rw-r--r-- | config/description.exs | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/config/description.exs b/config/description.exs index ed3a534a0..02cdf2ff3 100644 --- a/config/description.exs +++ b/config/description.exs @@ -497,6 +497,20 @@ config :pleroma, :config_description, [ }, %{ group: :pleroma, + key: :database, + type: :group, + description: "Database-related settings", + children: [ + %{ + key: :improved_hashtag_timeline, + type: :keyword, + description: + "If `true`, hashtags will be fetched from `hashtags` table for hashtags timeline. When `false`, object-embedded hashtags will be used (slower). Is auto-set to `true` (unless overridden) when HashtagsTableMigrator completes." + } + ] + }, + %{ + group: :pleroma, key: :instance, type: :group, description: "Instance-related settings", @@ -941,12 +955,6 @@ config :pleroma, :config_description, [ key: :show_reactions, type: :boolean, description: "Let favourites and emoji reactions be viewed through the API." - }, - %{ - key: :improved_hashtag_timeline, - type: :keyword, - description: - "If `true`, hashtags will be fetched from `hashtags` table for hashtags timeline. When `false`, object-embedded hashtags will be used (slower). Is auto-set to `true` (unless overridden) when HashtagsTableMigrator completes." } ] }, |