mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Merge pull request #1659 from appwrite/fix-sum-description
Fixed sum description
This commit is contained in:
commit
41b263dc1f
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ class BaseList extends Model
|
||||||
if ($paging) {
|
if ($paging) {
|
||||||
$this->addRule('sum', [
|
$this->addRule('sum', [
|
||||||
'type' => self::TYPE_INTEGER,
|
'type' => self::TYPE_INTEGER,
|
||||||
'description' => 'Total sum of items in the list.',
|
'description' => 'Total number of items available on the server.',
|
||||||
'default' => 0,
|
'default' => 0,
|
||||||
'example' => 5,
|
'example' => 5,
|
||||||
]);
|
]);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue