Skip to content
Snippets Groups Projects
Commit c68feaf5 authored by jurgenhaas's avatar jurgenhaas
Browse files

Add support for allow and deny lists

parent cc5a091e
No related branches found
No related tags found
No related merge requests found
......@@ -23,8 +23,12 @@ services:
- Db:Password=birdsitelive
- Twitter:ConsumerKey={{ birdsite.twitter.key }}
- Twitter:ConsumerSecret={{ birdsite.twitter.secret }}
# - Moderation:FollowersWhiteListing=@me@my-instance.ca;friend-instance.com;*.friend-instance.com
# - Moderation:TwitterAccountsBlackListing=douchebag;jerk_88;theRealIdiot
{% if birdsite.allowlist is defined %}
- Moderation:FollowersWhiteListing={{ birdsite.allowlist|join(';') }}
{% endif %}
{% if birdsite.denylist is defined %}
- Moderation:TwitterAccountsBlackListing={{ birdsite.denylist|join(';') }}
{% endif %}
- Instance:Name={{ birdsite.name }}
- Instance:ResolveMentionsInProfiles=true
- Instance:PublishReplies=true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment