Skip to content

Commit

Permalink
Drop GET method for field-meta endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmcclean committed Jan 10, 2025
1 parent bcd529b commit ab763f3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion routes/cp.php
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@
Route::get('/', [FieldsController::class, 'index'])->name('fields.index');
Route::post('edit', [FieldsController::class, 'edit'])->name('fields.edit');
Route::post('update', [FieldsController::class, 'update'])->name('fields.update');
Route::get('field-meta', [MetaController::class, 'show']);
Route::post('field-meta', [MetaController::class, 'show']);
Route::delete('fieldsets/{fieldset}/reset', [FieldsetController::class, 'reset'])->name('fieldsets.reset');
Route::resource('fieldsets', FieldsetController::class)->except(['show']);
Expand Down

0 comments on commit ab763f3

Please sign in to comment.