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:53:45 +10:00
parent 3ce70b3701
commit 37ff8e0a88
13 changed files with 292 additions and 23 deletions
+1
View File
@@ -9,5 +9,6 @@ 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('/story-items/{id}', [StoryController::class, 'showItem']);
Route::get('/threads', [ThreadController::class, 'index']);
Route::get('/threads/{threadId}', [ThreadController::class, 'show']);