[PR #5701] [CLOSED] Dev shub #6552

Closed
opened 2026-02-05 10:35:22 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BookStackApp/BookStack/pull/5701
Author: @shuhamdhiman
Created: 7/10/2025
Status: Closed

Base: developmentHead: devShub


📝 Commits (4)

📊 Changes

105 files changed (+6083 additions, -42 deletions)

View changed files

📝 app/Activity/ActivityType.php (+12 -0)
📝 app/Activity/Tools/EntityWatchers.php (+2 -0)
app/Activity/Tools/RecordCommentTree.php (+136 -0)
📝 app/App/HomeController.php (+1 -1)
📝 app/App/Providers/AppServiceProvider.php (+6 -0)
📝 app/Entities/Controllers/ChapterController.php (+137 -0)
📝 app/Entities/Controllers/PageController.php (+230 -0)
app/Entities/Controllers/RecordApiController.php (+154 -0)
app/Entities/Controllers/RecordController.php (+273 -0)
📝 app/Entities/Models/Entity.php (+4 -0)
📝 app/Entities/Models/Page.php (+1 -0)
app/Entities/Models/Record.php (+139 -0)
app/Entities/Models/RecordChapter.php (+73 -0)
app/Entities/Models/RecordChild.php (+51 -0)
app/Entities/Models/RecordPage.php (+153 -0)
app/Entities/Models/RecordPageRevision.php (+92 -0)
📝 app/Entities/Queries/BookQueries.php (+1 -0)
📝 app/Entities/Queries/ChapterQueries.php (+28 -0)
📝 app/Entities/Queries/EntityQueries.php (+5 -0)
app/Entities/Queries/RecordChapterQueries.php (+97 -0)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/BookStackApp/BookStack/pull/5701 **Author:** [@shuhamdhiman](https://github.com/shuhamdhiman) **Created:** 7/10/2025 **Status:** ❌ Closed **Base:** `development` ← **Head:** `devShub` --- ### 📝 Commits (4) - [`efcda9b`](https://github.com/BookStackApp/BookStack/commit/efcda9b884f87ccf0df226485f4ab8e7aba33d92) messed up code push (completed create + show) [record + chapter] - [`35e4733`](https://github.com/BookStackApp/BookStack/commit/35e4733db5c897747fb0b451193fd88d2ebcc0a8) CURD opertion [record, chapter, pages] - [`82773a1`](https://github.com/BookStackApp/BookStack/commit/82773a1718f9888395276d154045ad8e58188e99) Merge branch 'development' of https://github.com/shuhamdhiman/BookStack into devShub - [`df5a990`](https://github.com/BookStackApp/BookStack/commit/df5a990285da8bfed07c8eb2707a7b9b81cd1842) Merge branch 'development' into devShub ### 📊 Changes **105 files changed** (+6083 additions, -42 deletions) <details> <summary>View changed files</summary> 📝 `app/Activity/ActivityType.php` (+12 -0) 📝 `app/Activity/Tools/EntityWatchers.php` (+2 -0) ➕ `app/Activity/Tools/RecordCommentTree.php` (+136 -0) 📝 `app/App/HomeController.php` (+1 -1) 📝 `app/App/Providers/AppServiceProvider.php` (+6 -0) 📝 `app/Entities/Controllers/ChapterController.php` (+137 -0) 📝 `app/Entities/Controllers/PageController.php` (+230 -0) ➕ `app/Entities/Controllers/RecordApiController.php` (+154 -0) ➕ `app/Entities/Controllers/RecordController.php` (+273 -0) 📝 `app/Entities/Models/Entity.php` (+4 -0) 📝 `app/Entities/Models/Page.php` (+1 -0) ➕ `app/Entities/Models/Record.php` (+139 -0) ➕ `app/Entities/Models/RecordChapter.php` (+73 -0) ➕ `app/Entities/Models/RecordChild.php` (+51 -0) ➕ `app/Entities/Models/RecordPage.php` (+153 -0) ➕ `app/Entities/Models/RecordPageRevision.php` (+92 -0) 📝 `app/Entities/Queries/BookQueries.php` (+1 -0) 📝 `app/Entities/Queries/ChapterQueries.php` (+28 -0) 📝 `app/Entities/Queries/EntityQueries.php` (+5 -0) ➕ `app/Entities/Queries/RecordChapterQueries.php` (+97 -0) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 10:35:22 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/BookStack#6552