summaryrefslogtreecommitdiff
path: root/docs/configuration
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-08-25 10:34:09 +0000
committerlain <lain@soykaf.club>2020-08-25 10:34:09 +0000
commit361aa22e2862c1c914baf8257fdc8b20cbc7941d (patch)
treee306f33dcd26fad9751a111a87efe78ac438a1a7 /docs/configuration
parent5722b0e2e5e7113f0422798a6ea8cc40d1953291 (diff)
parent6d6e43fd09a66740d447e77e9878d9d35bc07414 (diff)
downloadpleroma-361aa22e2862c1c914baf8257fdc8b20cbc7941d.tar.gz
pleroma-361aa22e2862c1c914baf8257fdc8b20cbc7941d.zip
Merge branch 'frontend-bundles-downloads' into 'develop'
frontend install mix tasks See merge request pleroma/pleroma!2841
Diffstat (limited to 'docs/configuration')
-rw-r--r--docs/configuration/cheatsheet.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md
index 4758fca66..a09d6b6b2 100644
--- a/docs/configuration/cheatsheet.md
+++ b/docs/configuration/cheatsheet.md
@@ -1070,11 +1070,11 @@ Control favicons for instances.
Frontends in Pleroma are swappable - you can specify which one to use here.
-For now, you can set a frontend with the key `primary` and the options of `name` and `ref`. This will then make Pleroma serve the frontend from a folder constructed by concatenating the instance static path, `frontends` and the name and ref.
+You can set a frontends for the key `primary` and `admin` and the options of `name` and `ref`. This will then make Pleroma serve the frontend from a folder constructed by concatenating the instance static path, `frontends` and the name and ref.
-The key `primary` refers to the frontend that will be served by default for general requests. In the future, other frontends like the admin frontend will also be configurable here.
+The key `primary` refers to the frontend that will be served by default for general requests. The key `admin` refers to the frontend that will be served at the `/pleroma/admin` path.
-If you don't set anything here, the bundled frontend will be used.
+If you don't set anything here, the bundled frontends will be used.
Example:
@@ -1083,6 +1083,10 @@ config :pleroma, :frontends,
primary: %{
"name" => "pleroma",
"ref" => "stable"
+ },
+ admin: %{
+ "name" => "admin",
+ "ref" => "develop"
}
```