diff options
| author | Roger Braun <rbraun@Bobble.local> | 2017-09-15 14:17:36 +0200 |
|---|---|---|
| committer | Roger Braun <rbraun@Bobble.local> | 2017-09-15 14:17:36 +0200 |
| commit | 50409326a853db7bd9f538f0ddbec805c134920f (patch) | |
| tree | af6c67360b6d021063545997481f92739cbae2bd /config | |
| parent | ac2893a945a753ad05d46234ba80e14f3ce62c97 (diff) | |
| download | pleroma-50409326a853db7bd9f538f0ddbec805c134920f.tar.gz pleroma-50409326a853db7bd9f538f0ddbec805c134920f.zip | |
Refactor posting and make character limit configurable.
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.exs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/config.exs b/config/config.exs index 3861f9901..6696a4902 100644 --- a/config/config.exs +++ b/config/config.exs @@ -43,7 +43,8 @@ version = with {version, 0} <- System.cmd("git", ["rev-parse", "HEAD"]) do config :pleroma, :instance, version: version, name: "Pleroma", - email: "example@example.com" + email: "example@example.com", + limit: 5000 # Import environment specific config. This must remain at the bottom # of this file so it overrides the configuration defined above. |
