[PR #4003] [CLOSED] Task/auth add mobile #6287

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

📋 Pull Request Information

Original PR: https://github.com/BookStackApp/BookStack/pull/4003
Author: @prabhasinamdar
Created: 1/28/2023
Status: Closed

Base: developmentHead: task/auth_add_mobile


📝 Commits (10+)

  • 6d41cd5 PoC: User wise reading font size preference
  • d160703 Add copyright and support email link in the footer
  • 30d3ef6 Add buttons to allow the user to change their reading font size preference
  • 7ec3700 Add tailwind CSS framework. Add Marathi language PoC folder
  • efa1220 Persist location of user's last line visited on a page
  • aa75a74 Merge branch 'development' into feature/book-ui-layout
  • 75535aa Remove tailwind reference from the original views created by the platform author.
  • d230704 Change the app/Config/view.php file to point to the new tailwind based SMF views
  • 3094508 Add an entire UI folder based on Tailwind CSS
  • ba87f95 Add .editorconfig and update vscode settings.json

📊 Changes

318 files changed (+14673 additions, -283 deletions)

View changed files

.editorconfig (+17 -0)
📝 .gitignore (+3 -1)
.vscode/settings.json (+3 -0)
📝 app/Auth/Access/RegistrationService.php (+1 -0)
📝 app/Auth/User.php (+1 -1)
📝 app/Auth/UserRepo.php (+5 -0)
📝 app/Config/setting-defaults.php (+2 -1)
📝 app/Config/view.php (+1 -1)
📝 app/Http/Controllers/Auth/RegisterController.php (+1 -0)
📝 app/Http/Controllers/HomeController.php (+10 -7)
📝 app/Http/Controllers/UserController.php (+3 -0)
📝 app/Http/Controllers/UserPreferencesController.php (+29 -0)
📝 app/Settings/SettingService.php (+4 -1)
📝 app/helpers.php (+6 -1)
📝 database/factories/Auth/UserFactory.php (+1 -0)
database/migrations/2023_01_28_105449_add_mobile_to_users_table.php (+32 -0)
📝 package-lock.json (+1623 -251)
📝 package.json (+17 -4)
postcss.config.js (+12 -0)
public/images/smfyoutubeimage.png (+0 -0)

...and 80 more files

📄 Description

Added mobile number field for following screens

  1. Create account
  2. Edit Profile
  3. Add User (Admin)

🔄 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/4003 **Author:** [@prabhasinamdar](https://github.com/prabhasinamdar) **Created:** 1/28/2023 **Status:** ❌ Closed **Base:** `development` ← **Head:** `task/auth_add_mobile` --- ### 📝 Commits (10+) - [`6d41cd5`](https://github.com/BookStackApp/BookStack/commit/6d41cd5d447cf9c0de3dfa3c5e3a00313790fd68) PoC: User wise reading font size preference - [`d160703`](https://github.com/BookStackApp/BookStack/commit/d160703e8677d1f79797852669c3a93923c8d525) Add copyright and support email link in the footer - [`30d3ef6`](https://github.com/BookStackApp/BookStack/commit/30d3ef668587463dfa84758e638bd4222db0b7fb) Add buttons to allow the user to change their reading font size preference - [`7ec3700`](https://github.com/BookStackApp/BookStack/commit/7ec3700c7c43a8775c21970da61daa44dfdae8bd) Add tailwind CSS framework. Add Marathi language PoC folder - [`efa1220`](https://github.com/BookStackApp/BookStack/commit/efa1220f19eaa3ab0cac499a33200ad28dbd35c3) Persist location of user's last line visited on a page - [`aa75a74`](https://github.com/BookStackApp/BookStack/commit/aa75a74475af0a5d1d1f2b55cebb3c81efac8127) Merge branch 'development' into feature/book-ui-layout - [`75535aa`](https://github.com/BookStackApp/BookStack/commit/75535aa576d2376c9a83a5e1b9564aa9683b4d72) Remove tailwind reference from the original views created by the platform author. - [`d230704`](https://github.com/BookStackApp/BookStack/commit/d230704433389424c885a46c3cf1d5b8da7eb3b1) Change the app/Config/view.php file to point to the new tailwind based SMF views - [`3094508`](https://github.com/BookStackApp/BookStack/commit/3094508f60610bbafeaf7955a51a96e0933619c5) Add an entire UI folder based on Tailwind CSS - [`ba87f95`](https://github.com/BookStackApp/BookStack/commit/ba87f9554be825a839f7dbb5b165e4d87d69045c) Add .editorconfig and update vscode settings.json ### 📊 Changes **318 files changed** (+14673 additions, -283 deletions) <details> <summary>View changed files</summary> ➕ `.editorconfig` (+17 -0) 📝 `.gitignore` (+3 -1) ➕ `.vscode/settings.json` (+3 -0) 📝 `app/Auth/Access/RegistrationService.php` (+1 -0) 📝 `app/Auth/User.php` (+1 -1) 📝 `app/Auth/UserRepo.php` (+5 -0) 📝 `app/Config/setting-defaults.php` (+2 -1) 📝 `app/Config/view.php` (+1 -1) 📝 `app/Http/Controllers/Auth/RegisterController.php` (+1 -0) 📝 `app/Http/Controllers/HomeController.php` (+10 -7) 📝 `app/Http/Controllers/UserController.php` (+3 -0) 📝 `app/Http/Controllers/UserPreferencesController.php` (+29 -0) 📝 `app/Settings/SettingService.php` (+4 -1) 📝 `app/helpers.php` (+6 -1) 📝 `database/factories/Auth/UserFactory.php` (+1 -0) ➕ `database/migrations/2023_01_28_105449_add_mobile_to_users_table.php` (+32 -0) 📝 `package-lock.json` (+1623 -251) 📝 `package.json` (+17 -4) ➕ `postcss.config.js` (+12 -0) ➕ `public/images/smfyoutubeimage.png` (+0 -0) _...and 80 more files_ </details> ### 📄 Description Added mobile number field for following screens 1. Create account 2. Edit Profile 3. Add User (Admin) --- <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:28:34 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/BookStack#6287