Skip to content

Commit

Permalink
switched to patch
Browse files Browse the repository at this point in the history
  • Loading branch information
idle-user committed Aug 23, 2021
1 parent f78572e commit 2c70882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
// Matches (WatchWrestling)
$app->group('/watchwrestling', function (Group $group) {
$group->post('/bet', Matches\AddBetAction::class)->setName('match-bet-add');
$group->put('/bet', Matches\UpdateBetAction::class)->setName('match-bet-update');
$group->patch('/bet', Matches\UpdateBetAction::class)->setName('match-bet-update');
$group->post('/rate', Matches\AddMatchRatingAction::class)->setName('match-rate-add');
$group->group('/brands', function (Group $group) {
$group->get('', Matches\ListBrandsAction::class);
Expand Down

0 comments on commit 2c70882

Please sign in to comment.