From 6184b6a3780fa8c4134aadef500dcc254a8e8ffe Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Mon, 21 Aug 2023 11:43:06 -0700 Subject: [PATCH] Update request filter to not handle projects apis The endpoints were only used internally so it's okay to not support older versions. --- src/Appwrite/Utopia/Request/Filters/V16.php | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/src/Appwrite/Utopia/Request/Filters/V16.php b/src/Appwrite/Utopia/Request/Filters/V16.php index f8c97681b2..a0e816b3a8 100644 --- a/src/Appwrite/Utopia/Request/Filters/V16.php +++ b/src/Appwrite/Utopia/Request/Filters/V16.php @@ -23,24 +23,13 @@ class V16 extends Filter unset($content['data']); break; case 'projects.createDomain': - // TODO: How to handle this? - // This endpoint was deleted - break; case 'projects.listDomains': - // TODO: How to handle this? - // This endpoint was deleted - break; case 'projects.getDomain': - // TODO: How to handle this? - // This endpoint was deleted - break; case 'projects.updateDomainVerification': - // TODO: How to handle this? - // This endpoint was deleted - break; case 'projects.deleteDomain': - // TODO: How to handle this? - // This endpoint was deleted + // These endpoints were deleted and we're accepting + // the breaking change since the endpoint was only + // used internally. break; }