Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ecto_sql_update

This commit is contained in:
lain 2019-05-17 11:33:04 +02:00
commit 67af50ec71
69 changed files with 1961 additions and 568 deletions

View file

@ -406,8 +406,7 @@ config :pleroma_job_queue, :queues,
mailer: 10,
transmogrifier: 20,
scheduled_activities: 10,
background: 5,
user: 10
background: 5
config :pleroma, :fetch_initial_posts,
enabled: false,
@ -466,6 +465,9 @@ config :pleroma, :oauth2,
token_expires_in: 600,
issue_new_refresh_token: true
config :http_signatures,
adapter: Pleroma.Signature
# 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"

View file

@ -61,6 +61,8 @@ config :pleroma, Pleroma.ScheduledActivity,
config :pleroma, :app_account_creation, max_requests: 5
config :pleroma, :http_security, report_uri: "https://endpoint.com"
try do
import_config "test.secret.exs"
rescue