diff --git a/app/Http/Controllers/Forum/ForumsController.php b/app/Http/Controllers/Forum/ForumsController.php index 5fc6d41c596..a9ffac903ec 100644 --- a/app/Http/Controllers/Forum/ForumsController.php +++ b/app/Http/Controllers/Forum/ForumsController.php @@ -29,7 +29,7 @@ public function __construct() /** * Get Forum Listing * - * Get top-level forums, their subforums (max 2 deep), and their last topics. + * Get top-level forums and their subforums (max 2 deep). * * --- * @@ -37,8 +37,7 @@ public function __construct() * * Field | Type | * ----------- | ---------------------------- | - * forums | [Forum](#forum)[] | - * last_topics | [ForumTopic](#forum-topic)[] | + * forums | [Forum](#forum-object)[] | * * @response { * "forums": [ @@ -98,7 +97,7 @@ public function markAsRead() * * Field | Type | * ------------- | ---------------------------- | - * forum | [Forum](#forum) | + * forum | [Forum](#forum-object) | * topics | [ForumTopic](#forum-topic)[] | * pinned_topics | [ForumTopic](#forum-topic)[] | *