Merge remote-tracking branch 'origin/develop' into shigusegubu
* origin/develop: Apply suggestion to lib/pleroma/web/common_api/utils.ex Update CHANGELOG and docs Add filename_display_max_length config priv/static: Add a warning discouraging admins from modifying the static files directly Fix notifications mark as read API EmojiReactionController: Return more appropriate error. Credo fixes for the credo god. AnnounceValidator: Check for announcability Credo fixes. Announcements: Fix all tests. SideEffects: Builed out Announce effects. Pipeline: Don't federate if federation is disabled. Announcements: Handle through common pipeline. CommonAPI: Change public->private implicit addressing. AnnounceValidator: Validate for existing announce ObjectValidators: Add basic Announce validator. TransmogrifierTest: Fix tests. Transmogrifier Test: Extract Announce handling.
This commit is contained in:
commit
8676f39421
46 changed files with 914 additions and 394 deletions
|
|
@ -71,7 +71,8 @@ config :pleroma, Pleroma.Upload,
|
|||
follow_redirect: true,
|
||||
pool: :upload
|
||||
]
|
||||
]
|
||||
],
|
||||
filename_display_max_length: 30
|
||||
|
||||
config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
|
||||
|
||||
|
|
|
|||
|
|
@ -119,6 +119,11 @@ config :pleroma, :config_description, [
|
|||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
%{
|
||||
key: :filename_display_max_length,
|
||||
type: :integer,
|
||||
description: "Set max length of a filename to display. 0 = no limit. Default: 30"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue