[PR #1101] [CLOSED] Latest bookstack #5767

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

📋 Pull Request Information

Original PR: https://github.com/BookStackApp/BookStack/pull/1101
Author: @ParserYa
Created: 11/1/2018
Status: Closed

Base: masterHead: latest_bookstack


📝 Commits (10+)

📊 Changes

44 files changed (+1539 additions, -276 deletions)

View changed files

.dockerignore (+4 -0)
Dockerfile (+54 -0)
📝 app/Auth/Access/SocialAuthService.php (+12 -12)
📝 app/Auth/Permissions/PermissionService.php (+43 -5)
📝 app/Entities/Book.php (+5 -0)
📝 app/Entities/Chapter.php (+5 -0)
📝 app/Entities/Entity.php (+1 -1)
📝 app/Entities/EntityProvider.php (+10 -1)
app/Entities/Link.php (+60 -0)
📝 app/Entities/Repos/EntityRepo.php (+21 -5)
📝 app/Http/Controllers/Auth/LoginController.php (+1 -0)
📝 app/Http/Controllers/Auth/RegisterController.php (+21 -26)
📝 app/Http/Controllers/ChapterController.php (+2 -0)
📝 app/Http/Controllers/HomeController.php (+14 -10)
app/Http/Controllers/LinkController.php (+128 -0)
📝 app/Http/Middleware/Authenticate.php (+1 -1)
📝 app/Http/Middleware/RedirectIfAuthenticated.php (+1 -1)
📝 app/Providers/EventServiceProvider.php (+1 -1)
bookstack.conf (+10 -0)
database/migrations/2018_04_03_140823_create_links_table.php (+69 -0)

...and 24 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/1101 **Author:** [@ParserYa](https://github.com/ParserYa) **Created:** 11/1/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `latest_bookstack` --- ### 📝 Commits (10+) - [`3b662a7`](https://github.com/BookStackApp/BookStack/commit/3b662a7c813dc241406472f222648da72e354712) Main page design rework - [`bc97281`](https://github.com/BookStackApp/BookStack/commit/bc97281e31f7c9154f0a1efa587a808112f29066) docker + quickfix - [`87e7a19`](https://github.com/BookStackApp/BookStack/commit/87e7a194d36c24d730e8114398a97c39ae6e5b9d) Nested pages not shown on main page - [`7bfa27e`](https://github.com/BookStackApp/BookStack/commit/7bfa27e0cef935f8a388eae54008315e81ca5b7e) fixed pages count for main page - [`2c25af9`](https://github.com/BookStackApp/BookStack/commit/2c25af9bb8ef5651075f864617fb005e293df293) Add entity link: create, update, delete, view, view for main. Add permission for it - [`427405d`](https://github.com/BookStackApp/BookStack/commit/427405d9e21db7aa3a8244cc96eae942600d417a) Instruction for docker - [`fd21d30`](https://github.com/BookStackApp/BookStack/commit/fd21d30a597edb6425edd2c69beff1a0f3fc9273) Clearfix fixed - [`012cf73`](https://github.com/BookStackApp/BookStack/commit/012cf73868a980b8ed8be6e3dc2643ba673e6d1e) Merge branch 'master' of https://github.com/ParserYa/BookStack - [`84125a3`](https://github.com/BookStackApp/BookStack/commit/84125a37fdf09401fe3b65067fd96b8bd706429c) Create link button on empty book - [`c5bfc27`](https://github.com/BookStackApp/BookStack/commit/c5bfc273803dc0fb9fcbadc891d613655aa789bc) add login via google only ### 📊 Changes **44 files changed** (+1539 additions, -276 deletions) <details> <summary>View changed files</summary> ➕ `.dockerignore` (+4 -0) ➕ `Dockerfile` (+54 -0) 📝 `app/Auth/Access/SocialAuthService.php` (+12 -12) 📝 `app/Auth/Permissions/PermissionService.php` (+43 -5) 📝 `app/Entities/Book.php` (+5 -0) 📝 `app/Entities/Chapter.php` (+5 -0) 📝 `app/Entities/Entity.php` (+1 -1) 📝 `app/Entities/EntityProvider.php` (+10 -1) ➕ `app/Entities/Link.php` (+60 -0) 📝 `app/Entities/Repos/EntityRepo.php` (+21 -5) 📝 `app/Http/Controllers/Auth/LoginController.php` (+1 -0) 📝 `app/Http/Controllers/Auth/RegisterController.php` (+21 -26) 📝 `app/Http/Controllers/ChapterController.php` (+2 -0) 📝 `app/Http/Controllers/HomeController.php` (+14 -10) ➕ `app/Http/Controllers/LinkController.php` (+128 -0) 📝 `app/Http/Middleware/Authenticate.php` (+1 -1) 📝 `app/Http/Middleware/RedirectIfAuthenticated.php` (+1 -1) 📝 `app/Providers/EventServiceProvider.php` (+1 -1) ➕ `bookstack.conf` (+10 -0) ➕ `database/migrations/2018_04_03_140823_create_links_table.php` (+69 -0) _...and 24 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:16:37 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/BookStack#5767