1
0
Fork 0
mirror of synced 2024-06-29 11:40:45 +12:00

Merge pull request #2874 from appwrite/frontend-fixes

Frontend fixes
This commit is contained in:
Christy Jacob 2022-03-02 03:23:24 +04:00 committed by GitHub
commit f01d53526c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 14 deletions

View file

@ -395,9 +395,9 @@ return [
'variables' => [ 'variables' => [
[ [
'name' => '_APP_STORAGE_LIMIT', 'name' => '_APP_STORAGE_LIMIT',
'description' => 'Maximum file size allowed for file upload. The default value is 10MB limitation. You should pass your size limit value in bytes.', 'description' => 'Maximum file size allowed for file upload. The default value is 30MB. You should pass your size limit value in bytes.',
'introduction' => '0.7.0', 'introduction' => '0.7.0',
'default' => '10000000', 'default' => '30000000',
'required' => false, 'required' => false,
'question' => '', 'question' => '',
'filter' => '' 'filter' => ''

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -193,6 +193,7 @@ class V12 extends Filter
protected function parseUsageBuckets(array $content) protected function parseUsageBuckets(array $content)
{ {
unset($content['filesStorage']); unset($content['filesStorage']);
return $content;
} }
protected function parseUsageStorage(array $content) protected function parseUsageStorage(array $content)
@ -215,6 +216,8 @@ class V12 extends Filter
unset($content['filesRead']); unset($content['filesRead']);
unset($content['filesUpdate']); unset($content['filesUpdate']);
unset($content['filesDelete']); unset($content['filesDelete']);
return $content;
} }
protected function parseExecution($content) { protected function parseExecution($content) {