1
0
Fork 0
mirror of synced 2024-07-06 15:11:21 +12:00

Update request filter to not handle projects apis

The endpoints were only used internally so it's okay to not support older
versions.
This commit is contained in:
Steven Nguyen 2023-08-21 11:43:06 -07:00
parent a012a42008
commit 6184b6a378
No known key found for this signature in database

View file

@ -23,24 +23,13 @@ class V16 extends Filter
unset($content['data']); unset($content['data']);
break; break;
case 'projects.createDomain': case 'projects.createDomain':
// TODO: How to handle this?
// This endpoint was deleted
break;
case 'projects.listDomains': case 'projects.listDomains':
// TODO: How to handle this?
// This endpoint was deleted
break;
case 'projects.getDomain': case 'projects.getDomain':
// TODO: How to handle this?
// This endpoint was deleted
break;
case 'projects.updateDomainVerification': case 'projects.updateDomainVerification':
// TODO: How to handle this?
// This endpoint was deleted
break;
case 'projects.deleteDomain': case 'projects.deleteDomain':
// TODO: How to handle this? // These endpoints were deleted and we're accepting
// This endpoint was deleted // the breaking change since the endpoint was only
// used internally.
break; break;
} }