Add Soapbox default config and CHANGELOG_soapbox.md

This commit is contained in:
Alex Gleason 2021-04-29 14:14:41 -05:00
parent 01c220b722
commit 9aae9b0ede
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
3 changed files with 27 additions and 0 deletions

18
CHANGELOG_soapbox.md Normal file
View file

@ -0,0 +1,18 @@
# Changelog
All notable changes to this project will be documented in this file.
This file is only for changes to Soapbox.
For changes to Pleroma, see `CHANGELOG.md`
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [0.1.0] - unreleased
Based on Pleroma 2.3.0-stable.
### Added
- Twitter-like block behavior, configured under "ActivityPub > Blockers visible" in AdminFE.
- The Soapbox version in `/api/v1/instance`
### Changed
- Twitter-like block behavior is now the default.

View file

@ -841,6 +841,8 @@
{Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy, [max_running: 5, max_waiting: 5]}
]
import_config "soapbox.exs"
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config "#{Mix.env()}.exs"

7
config/soapbox.exs Normal file
View file

@ -0,0 +1,7 @@
# Soapbox default config overrides
# This file gets loaded after config.exs
# and before prod.secret.exs
use Mix.Config
# Twitter-like block behavior
config :pleroma, :activitypub, blockers_visible: false