mirror of
https://github.com/friendica/friendica
synced 2025-05-06 11:04:12 +02:00
Delete unused media attachments
This commit is contained in:
parent
af28b82858
commit
425f23bbdc
17 changed files with 459 additions and 372 deletions
|
@ -32,12 +32,12 @@ class MediaAttachmentsConfig extends BaseDataTransferObject
|
|||
/**
|
||||
* @param array $supported_mime_types
|
||||
*/
|
||||
public function __construct(array $supported_mime_types, int $image_size_limit, int $image_matrix_limit)
|
||||
public function __construct(array $supported_mime_types, int $image_size_limit, int $image_matrix_limit, int $media_size_limit)
|
||||
{
|
||||
$this->supported_mime_types = $supported_mime_types;
|
||||
$this->image_size_limit = $image_size_limit;
|
||||
$this->image_matrix_limit = $image_matrix_limit;
|
||||
$this->video_size_limit = $image_size_limit;
|
||||
$this->video_size_limit = $media_size_limit;
|
||||
$this->video_matrix_limit = $image_matrix_limit;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue