From 3c7b7d21f5bd2ebca724d2e4336f35a26dcda7c4 Mon Sep 17 00:00:00 2001 From: kodumbeats Date: Thu, 17 Jun 2021 14:22:43 -0400 Subject: [PATCH] Add reminder to filter results from listCollections --- app/controllers/api/database.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/api/database.php b/app/controllers/api/database.php index 771c430149..d1cbb9115a 100644 --- a/app/controllers/api/database.php +++ b/app/controllers/api/database.php @@ -84,6 +84,7 @@ App::get('/v1/database/collections') /** @var Utopia\Database\Database $dbForExternal */ $collections = $dbForExternal->listCollections($limit, $offset); + // TODO@kodumbeats allow for filtering collections $response->dynamic2(new Document([ 'collections' => $collections,