Merge pull request #1659 from appwrite/fix-sum-description

Fixed sum description
This commit is contained in:
Eldad A. Fux 2021-09-26 16:02:39 +03:00 committed by GitHub
commit 41b263dc1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,7 +34,7 @@ class BaseList extends Model
if ($paging) {
$this->addRule('sum', [
'type' => self::TYPE_INTEGER,
'description' => 'Total sum of items in the list.',
'description' => 'Total number of items available on the server.',
'default' => 0,
'example' => 5,
]);