Skip to content

Commit 3161ca4

Browse files
committed
Fix for #577
1 parent e224057 commit 3161ca4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

api.php

+1
Original file line numberDiff line numberDiff line change
@@ -10492,6 +10492,7 @@ public static function getOperation(ServerRequestInterface $request): string
1049210492
return 'document';
1049310493
case 'columns':
1049410494
return $method == 'get' ? 'reflect' : 'remodel';
10495+
case 'geojson':
1049510496
case 'records':
1049610497
switch ($method) {
1049710498
case 'POST':

src/Tqdev/PhpCrudApi/RequestUtils.php

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ public static function getOperation(ServerRequestInterface $request): string
4848
return 'document';
4949
case 'columns':
5050
return $method == 'get' ? 'reflect' : 'remodel';
51+
case 'geojson':
5152
case 'records':
5253
switch ($method) {
5354
case 'POST':

0 commit comments

Comments
 (0)