From 9a3b70d23d2ce8c990c77fc037ea6c7c252e0048 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 29 Dec 2018 22:37:30 -0700 Subject: [PATCH] Update config --- config/pixelfed.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/config/pixelfed.php b/config/pixelfed.php index feb3ed318..0bd5b94f7 100644 --- a/config/pixelfed.php +++ b/config/pixelfed.php @@ -177,6 +177,28 @@ return [ */ 'image_quality' => (int) env('IMAGE_QUALITY', 80), + /* + |-------------------------------------------------------------------------- + | Account deletion + |-------------------------------------------------------------------------- + | + | Enable account deletion. + | + */ + 'account_deletion' => env('ACCOUNT_DELETION', true), + + /* + |-------------------------------------------------------------------------- + | Account deletion after X days + |-------------------------------------------------------------------------- + | + | Set account deletion queue after X days, set to false to delete accounts + | immediately. + | + */ + 'account_delete_after' => env('ACCOUNT_DELETE_AFTER', false), + + 'media_types' => env('MEDIA_TYPES', 'image/jpeg,image/png,image/gif'), 'enforce_account_limit' => env('LIMIT_ACCOUNT_SIZE', true), 'ap_inbox' => env('ACTIVITYPUB_INBOX', false),