[PR #4173] [MERGED] Mobile sync support #4543

Closed
opened 2026-02-22 18:36:02 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/4173
Author: @timothycarambat
Created: 7/17/2025
Status: Merged
Merged: 7/31/2025
Merged by: @timothycarambat

Base: masterHead: mobile-support


📝 Commits (10+)

  • 5adeaa4 WIP on mobile connections
  • c45e8cf Merge branch 'master' into mobile-support
  • 9648ee3 improve connection flow and registration
  • e9420bb dev build mobile support
  • 5cb3052 fix path
  • eb7e624 handle relative URLs
  • 6fa4043 handle localhost access in product
  • 09925ab add device de-register
  • 11b5cbe sync styles
  • cf6b64e move UI to be out of the normal path since beta only

📊 Changes

23 files changed (+1215 additions, -12 deletions)

View changed files

📝 .github/workflows/dev-build.yaml (+1 -1)
📝 frontend/package.json (+2 -1)
📝 frontend/src/App.jsx (+8 -0)
frontend/src/models/mobile.js (+70 -0)
📝 frontend/src/pages/Admin/ExperimentalFeatures/features.js (+7 -0)
📝 frontend/src/pages/Admin/ExperimentalFeatures/index.jsx (+23 -9)
frontend/src/pages/GeneralSettings/MobileConnections/ConnectionModal/bg.png (+0 -0)
frontend/src/pages/GeneralSettings/MobileConnections/ConnectionModal/index.jsx (+149 -0)
frontend/src/pages/GeneralSettings/MobileConnections/DeviceRow/index.jsx (+90 -0)
frontend/src/pages/GeneralSettings/MobileConnections/index.jsx (+123 -0)
📝 frontend/src/utils/paths.js (+3 -0)
📝 frontend/yarn.lock (+5 -0)
server/endpoints/mobile/index.js (+160 -0)
server/endpoints/mobile/middleware/index.js (+97 -0)
server/endpoints/mobile/utils/index.js (+195 -0)
📝 server/index.js (+2 -0)
server/models/mobileDevice.js (+230 -0)
📝 server/models/user.js (+5 -0)
📝 server/package.json (+2 -1)
server/prisma/migrations/20250725194841_init/migration.sql (+17 -0)

...and 3 more files

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #xxx

What is in this change?

Additional Information

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 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/Mintplex-Labs/anything-llm/pull/4173 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 7/17/2025 **Status:** ✅ Merged **Merged:** 7/31/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `mobile-support` --- ### 📝 Commits (10+) - [`5adeaa4`](https://github.com/Mintplex-Labs/anything-llm/commit/5adeaa45fc4382e9ce176acaa4e382d47d6663b8) WIP on mobile connections - [`c45e8cf`](https://github.com/Mintplex-Labs/anything-llm/commit/c45e8cf2126568018f0ec1c232137cb3e015dd3f) Merge branch 'master' into mobile-support - [`9648ee3`](https://github.com/Mintplex-Labs/anything-llm/commit/9648ee3b8dad5c300ed9eb2c5d169d82e7cf7ec7) improve connection flow and registration - [`e9420bb`](https://github.com/Mintplex-Labs/anything-llm/commit/e9420bbd6646d3dcc01fc1c59ae1f26cca352b98) dev build mobile support - [`5cb3052`](https://github.com/Mintplex-Labs/anything-llm/commit/5cb3052c7ec2397158e2e69513da9c0dfb95d3b3) fix path - [`eb7e624`](https://github.com/Mintplex-Labs/anything-llm/commit/eb7e624c060875404d067a6dac57b569c0bbe73a) handle relative URLs - [`6fa4043`](https://github.com/Mintplex-Labs/anything-llm/commit/6fa40433a99251e5e9c01e516b625975066260db) handle localhost access in product - [`09925ab`](https://github.com/Mintplex-Labs/anything-llm/commit/09925abd54ecb562ad8f69fbb899ccf64cc0db75) add device de-register - [`11b5cbe`](https://github.com/Mintplex-Labs/anything-llm/commit/11b5cbe2da8f3f67bcd926e95271ec3067f15d0a) sync styles - [`cf6b64e`](https://github.com/Mintplex-Labs/anything-llm/commit/cf6b64e9709b505fd087e313b354836e542fe5a2) move UI to be out of the normal path since beta only ### 📊 Changes **23 files changed** (+1215 additions, -12 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/dev-build.yaml` (+1 -1) 📝 `frontend/package.json` (+2 -1) 📝 `frontend/src/App.jsx` (+8 -0) ➕ `frontend/src/models/mobile.js` (+70 -0) 📝 `frontend/src/pages/Admin/ExperimentalFeatures/features.js` (+7 -0) 📝 `frontend/src/pages/Admin/ExperimentalFeatures/index.jsx` (+23 -9) ➕ `frontend/src/pages/GeneralSettings/MobileConnections/ConnectionModal/bg.png` (+0 -0) ➕ `frontend/src/pages/GeneralSettings/MobileConnections/ConnectionModal/index.jsx` (+149 -0) ➕ `frontend/src/pages/GeneralSettings/MobileConnections/DeviceRow/index.jsx` (+90 -0) ➕ `frontend/src/pages/GeneralSettings/MobileConnections/index.jsx` (+123 -0) 📝 `frontend/src/utils/paths.js` (+3 -0) 📝 `frontend/yarn.lock` (+5 -0) ➕ `server/endpoints/mobile/index.js` (+160 -0) ➕ `server/endpoints/mobile/middleware/index.js` (+97 -0) ➕ `server/endpoints/mobile/utils/index.js` (+195 -0) 📝 `server/index.js` (+2 -0) ➕ `server/models/mobileDevice.js` (+230 -0) 📝 `server/models/user.js` (+5 -0) 📝 `server/package.json` (+2 -1) ➕ `server/prisma/migrations/20250725194841_init/migration.sql` (+17 -0) _...and 3 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #xxx ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [ ] I ran `yarn lint` from the root of the repo & committed changes - [ ] Relevant documentation has been updated - [ ] I have tested my code functionality - [ ] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:36:02 -05:00
yindo closed this issue 2026-02-22 18:36:02 -05:00
yindo changed title from [PR #4173] Mobile sync support to [PR #4173] [MERGED] Mobile sync support 2026-06-05 15:19:06 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4543