Initial Commit
linter / quality (push) Canceled after 0s
tests / ci (8.3) (push) Canceled after 0s
tests / ci (8.4) (push) Canceled after 0s
tests / ci (8.5) (push) Canceled after 0s

This commit is contained in:
2026-08-28 23:20:23 +10:00
parent f00405ed24
commit cc225414e0
8 changed files with 578 additions and 4 deletions
+3
View File
@@ -1,6 +1,7 @@
<?php
use App\Http\Controllers\StoryController;
use App\Http\Controllers\ThreadController;
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\PostController;
@@ -8,3 +9,5 @@ Route::get('/posts', [PostController::class, 'index']);
Route::get('/stories', [StoryController::class, 'index']);
Route::get('/stories/{username}', [StoryController::class, 'show']);
Route::post('/story-items/{id}/view', [StoryController::class, 'markViewed']);
Route::get('/threads', [ThreadController::class, 'index']);
Route::get('/threads/{threadId}', [ThreadController::class, 'show']);