Skip to content

Commit

Permalink
fix: update route
Browse files Browse the repository at this point in the history
  • Loading branch information
wescopeland committed Jan 26, 2025
1 parent 7dcc215 commit 8395e28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Community/RouteServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected function mapWebRoutes(): void
Route::get('forums/{category}/{forum}/create', [ForumTopicController::class, 'create'])->name('forum-topic.create');
Route::get('forums/post/{comment}/edit', [ForumTopicCommentController::class, 'edit'])->name('forum-topic-comment.edit');

Route::get('messages2', [MessageThreadController::class, 'index'])->name('message-thread.index');
Route::get('messages', [MessageThreadController::class, 'index'])->name('message-thread.index');

Route::get('settings', [UserSettingsController::class, 'show'])->name('settings.show');
});
Expand Down

0 comments on commit 8395e28

Please sign in to comment.