diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-01-10 18:18:09 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-01-10 18:18:09 +0300 |
commit | 958d0452e4e52f44301e4d9211fc965c1c184363 (patch) | |
tree | 315a6031c45d103b27d8e81da18f690f4622b6c9 | |
parent | 00aff5f78c5df202ffd0dcad231f819c3d11fe18 (diff) | |
download | pleroma-958d0452e4e52f44301e4d9211fc965c1c184363.tar.gz |
fix for pleroma assets group update
-rw-r--r-- | docs/API/admin_api.md | 8 | ||||
-rw-r--r-- | lib/pleroma/web/admin_api/config.ex | 1 |
2 files changed, 6 insertions, 3 deletions
diff --git a/docs/API/admin_api.md b/docs/API/admin_api.md index e0eda0841..cd4916248 100644 --- a/docs/API/admin_api.md +++ b/docs/API/admin_api.md @@ -3,7 +3,7 @@ Authentication is required and the user must be an admin. Configuration options: - + * `[:auth, :enforce_oauth_admin_scope_usage]` — OAuth admin scope requirement toggle. If `true`, admin actions explicitly demand admin OAuth scope(s) presence in OAuth token (client app must support admin scopes). If `false` and token doesn't have admin scope(s), `is_admin` user flag grants access to admin-specific actions. @@ -763,15 +763,17 @@ Example of setting without keyword in value: config :tesla, :adapter, Tesla.Adapter.Hackney ``` -List of settings which have list in value: +List of settings which support only full update: ```elixir @full_key_update [ {:pleroma, :ecto_repos}, + {:pleroma, :assets}, {:quack, :meta}, {:mime, :types}, {:cors_plug, [:max_age, :methods, :expose, :headers]}, {:auto_linker, :opts}, - {:swarm, :node_blacklist} + {:swarm, :node_blacklist}, + {:logger, :backends} ] ``` diff --git a/lib/pleroma/web/admin_api/config.ex b/lib/pleroma/web/admin_api/config.ex index a01c28716..49f0f8223 100644 --- a/lib/pleroma/web/admin_api/config.ex +++ b/lib/pleroma/web/admin_api/config.ex @@ -48,6 +48,7 @@ defmodule Pleroma.Web.AdminAPI.Config do @full_key_update [ {:pleroma, :ecto_repos}, + {:pleroma, :assets}, {:quack, :meta}, {:mime, :types}, {:cors_plug, [:max_age, :methods, :expose, :headers]}, |