diff options
author | Alex S <alex.strizhakov@gmail.com> | 2019-09-03 09:45:54 +0300 |
---|---|---|
committer | Alex S <alex.strizhakov@gmail.com> | 2019-09-11 09:25:33 +0300 |
commit | 35757b6d0eb7b59d511bfea6a166683e18d6aa97 (patch) | |
tree | 8c76370e33b61ef9ae25d2aea8aaf0f0c2af6d09 | |
parent | 5db2920644d8a82e53eaef228e39edef1e6af5aa (diff) | |
download | pleroma-35757b6d0eb7b59d511bfea6a166683e18d6aa97.tar.gz |
don't add behaviour to suggestions
-rw-r--r-- | lib/pleroma/docs/generator.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/docs/generator.ex b/lib/pleroma/docs/generator.ex index e788712cc..aa578eee2 100644 --- a/lib/pleroma/docs/generator.ex +++ b/lib/pleroma/docs/generator.ex @@ -14,7 +14,7 @@ defmodule Pleroma.Docs.Generator do name_as_list = Module.split(module) List.starts_with?(name_as_list, ["Pleroma", "Uploaders"]) and - List.last(name_as_list) in ["S3", "Local", "MDII"] + List.last(name_as_list) != "Uploader" end) end |