[PR #1500] [MERGED] [FEAT] Custom login screen icon + custom app name #3697

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1500
Author: @shatfield4
Created: 5/22/2024
Status: Merged
Merged: 5/23/2024
Merged by: @timothycarambat

Base: masterHead: 1432-feat-custom-login-screen-icon


📝 Commits (7)

  • 0241cc2 implement custom icon on login screen for single & multi user + custom app name feature
  • a77cfd7 hide field when not relevant
  • ec379b3 set customApp name
  • fec8f3b show original anythingllm login logo unless custom logo is set
  • c9a06c2 Merge branch 'master' into 1432-feat-custom-login-screen-icon
  • 691f13f nit-picks
  • 3acc6cf remove console log

📊 Changes

12 files changed (+225 additions, -25 deletions)

View changed files

📝 frontend/src/LogoContext.jsx (+17 -3)
📝 frontend/src/components/Modals/Password/MultiUserAuth.jsx (+12 -2)
📝 frontend/src/components/Modals/Password/SingleUserAuth.jsx (+12 -4)
📝 frontend/src/components/Modals/Password/index.jsx (+6 -6)
📝 frontend/src/hooks/useLogo.js (+2 -2)
📝 frontend/src/models/system.js (+44 -4)
frontend/src/pages/GeneralSettings/Appearance/CustomAppName/index.jsx (+100 -0)
📝 frontend/src/pages/GeneralSettings/Appearance/CustomLogo/index.jsx (+3 -4)
📝 frontend/src/pages/GeneralSettings/Appearance/index.jsx (+2 -0)
📝 server/endpoints/admin.js (+3 -0)
📝 server/endpoints/system.js (+23 -0)
📝 server/models/systemSettings.js (+1 -0)

📄 Description

…m app name feature

Pull Request Type

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

Relevant Issues

resolves #1432

What is in this change?

  • Implement feature to allow for custom logos being displayed on login screens (single & multi-user modes)
  • Implement feature to allow users to set a custom app name instead of AnythingLLM on login screens

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/1500 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 5/22/2024 **Status:** ✅ Merged **Merged:** 5/23/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `1432-feat-custom-login-screen-icon` --- ### 📝 Commits (7) - [`0241cc2`](https://github.com/Mintplex-Labs/anything-llm/commit/0241cc27075c694fb25b09d6484cef620148d902) implement custom icon on login screen for single & multi user + custom app name feature - [`a77cfd7`](https://github.com/Mintplex-Labs/anything-llm/commit/a77cfd712bdb17d5e36fe43f4a0242a91cfad339) hide field when not relevant - [`ec379b3`](https://github.com/Mintplex-Labs/anything-llm/commit/ec379b308760e2519442811b7d8d10dedd4ebe06) set customApp name - [`fec8f3b`](https://github.com/Mintplex-Labs/anything-llm/commit/fec8f3b878afc004c5b2eff5db31eaacaba4ebee) show original anythingllm login logo unless custom logo is set - [`c9a06c2`](https://github.com/Mintplex-Labs/anything-llm/commit/c9a06c241e5a554dd57c33c8bd38f20b928d0f4c) Merge branch 'master' into 1432-feat-custom-login-screen-icon - [`691f13f`](https://github.com/Mintplex-Labs/anything-llm/commit/691f13fc5049b05602b463bfdf401b610fdd54aa) nit-picks - [`3acc6cf`](https://github.com/Mintplex-Labs/anything-llm/commit/3acc6cfd41a57fb4694cf018b7b039ee99513740) remove console log ### 📊 Changes **12 files changed** (+225 additions, -25 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/LogoContext.jsx` (+17 -3) 📝 `frontend/src/components/Modals/Password/MultiUserAuth.jsx` (+12 -2) 📝 `frontend/src/components/Modals/Password/SingleUserAuth.jsx` (+12 -4) 📝 `frontend/src/components/Modals/Password/index.jsx` (+6 -6) 📝 `frontend/src/hooks/useLogo.js` (+2 -2) 📝 `frontend/src/models/system.js` (+44 -4) ➕ `frontend/src/pages/GeneralSettings/Appearance/CustomAppName/index.jsx` (+100 -0) 📝 `frontend/src/pages/GeneralSettings/Appearance/CustomLogo/index.jsx` (+3 -4) 📝 `frontend/src/pages/GeneralSettings/Appearance/index.jsx` (+2 -0) 📝 `server/endpoints/admin.js` (+3 -0) 📝 `server/endpoints/system.js` (+23 -0) 📝 `server/models/systemSettings.js` (+1 -0) </details> ### 📄 Description …m app name feature ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #1432 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Implement feature to allow for custom logos being displayed on login screens (single & multi-user modes) - Implement feature to allow users to set a custom app name instead of AnythingLLM on login screens ### 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. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] 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:34:19 -05:00
yindo closed this issue 2026-02-22 18:34:19 -05:00
yindo changed title from [PR #1500] [FEAT] Custom login screen icon + custom app name to [PR #1500] [MERGED] [FEAT] Custom login screen icon + custom app name 2026-06-05 15:14:46 -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#3697