Skip to content

Commit

Permalink
Fixed route caching
Browse files Browse the repository at this point in the history
  • Loading branch information
slavarazum committed Dec 15, 2023
1 parent 5c96779 commit e7df7d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
'middleware' => [config('wave.auth_middleware', 'auth').':'.config('wave.guard')],
], function () {
Route::get('presence-channel-users', [PresenceChannelUsersController::class, 'index'])->name('presence-channel-users');
Route::post('presence-channel-users', [PresenceChannelUsersController::class, 'store'])->name('presence-channel-users');
Route::post('presence-channel-users', [PresenceChannelUsersController::class, 'store']);
Route::delete('presence-channel-users', [PresenceChannelUsersController::class, 'destroy']);

Route::post('whisper', SendWhisper::class)->name('whisper');
Expand Down

0 comments on commit e7df7d2

Please sign in to comment.