diff options
author | lain <lain@soykaf.club> | 2019-04-08 14:10:43 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-04-08 14:10:43 +0200 |
commit | 5d871173d189a0019fda0ee76f8a324d90a163ee (patch) | |
tree | c3e423993ff5289dd0ba73a94881bd52d9cda1c2 /mix.exs | |
parent | 037fefe21871ee0a1926286c87c334ea1d339394 (diff) | |
parent | aac48d0cc6893c231c88d5cd7fe0334353bbf299 (diff) | |
download | pleroma-5d871173d189a0019fda0ee76f8a324d90a163ee.tar.gz pleroma-5d871173d189a0019fda0ee76f8a324d90a163ee.zip |
Merge branch 'features/mastoapi/2.6.0-conversations' of git.pleroma.social:pleroma/pleroma into features/mastoapi/2.6.0-conversations
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 19 |
1 files changed, 8 insertions, 11 deletions
@@ -22,16 +22,12 @@ defmodule Pleroma.Mixfile do homepage_url: "https://pleroma.social/", docs: [ logo: "priv/static/static/logo.png", - extras: [ - "README.md", - "docs/Admin-API.md", - "docs/Clients.md", - "docs/config.md", - "docs/Custom-Emoji.md", - "docs/Differences-in-MastodonAPI-Responses.md", - "docs/Message-Rewrite-Facility-configuration.md", - "docs/Pleroma-API.md", - "docs/static_dir.md" + extras: ["README.md" | Path.wildcard("docs/**/*.md")], + groups_for_extras: [ + "Installation manuals": Path.wildcard("docs/installation/*.md"), + Configuration: Path.wildcard("docs/config/*.md"), + Administration: Path.wildcard("docs/admin/*.md"), + "Pleroma's APIs and Mastodon API extensions": Path.wildcard("docs/api/*.md") ], main: "readme", output: "priv/static/doc" @@ -97,7 +93,8 @@ defmodule Pleroma.Mixfile do {:timex, "~> 3.5"}, {:auto_linker, git: "https://git.pleroma.social/pleroma/auto_linker.git", - ref: "94193ca5f97c1f9fdf3d1469653e2d46fac34bcd"} + ref: "94193ca5f97c1f9fdf3d1469653e2d46fac34bcd"}, + {:pleroma_job_queue, "~> 0.2.0"} ] end |