add config variable for max file size of CSV file
This commit is contained in:
parent
d3122c396e
commit
9ceda398ae
1 changed files with 6 additions and 0 deletions
|
@ -124,6 +124,12 @@ return [
|
||||||
// The fully-qualified URL of this Friendica node.
|
// The fully-qualified URL of this Friendica node.
|
||||||
// Used by the worker in a non-HTTP execution environment.
|
// Used by the worker in a non-HTTP execution environment.
|
||||||
'url' => '',
|
'url' => '',
|
||||||
|
|
||||||
|
// max_csv_file_size (Integer)
|
||||||
|
// When uploading a CSV with account addresses to follow
|
||||||
|
// in the user settings, this controls the maximum file
|
||||||
|
// size of the upload file.
|
||||||
|
'max_csv_file_size' => 30720,
|
||||||
],
|
],
|
||||||
|
|
||||||
// Used in the admin settings to lock certain features
|
// Used in the admin settings to lock certain features
|
||||||
|
|
Loading…
Reference in a new issue