[PR #3346] [MERGED] Add bio field to user #4270

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3346
Author: @shatfield4
Created: 2/25/2025
Status: Merged
Merged: 2/26/2025
Merged by: @timothycarambat

Base: masterHead: 3158-feat-user-generic-field


📝 Commits (7)

  • 05cd469 add bio to users table
  • 53f4fd4 lint
  • d3f4b2f add bio field to edit user admin page
  • 82413ab fix bio saving on new user
  • d7369ea simplify updating localstorage user
  • 15922e4 linting
  • bbae3b6 Merge branch 'master' into 3158-feat-user-generic-field

📊 Changes

7 files changed (+74 additions, -8 deletions)

View changed files

📝 frontend/src/components/UserMenu/AccountModal/index.jsx (+15 -1)
📝 frontend/src/pages/Admin/Users/NewUserModal/index.jsx (+15 -0)
📝 frontend/src/pages/Admin/Users/UserRow/EditUserModal/index.jsx (+28 -1)
📝 server/endpoints/system.js (+4 -6)
📝 server/models/user.js (+9 -0)
server/prisma/migrations/20250226005538_init/migration.sql (+2 -0)
📝 server/prisma/schema.prisma (+1 -0)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #3158

What is in this change?

  • Add bio field to users table
  • Add all CRUD operations for bio on UserModal and Admin/Users page
  • Allows user to set their own bio
  • Allows admins to modify anyone's bio from admin page

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/3346 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 2/25/2025 **Status:** ✅ Merged **Merged:** 2/26/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `3158-feat-user-generic-field` --- ### 📝 Commits (7) - [`05cd469`](https://github.com/Mintplex-Labs/anything-llm/commit/05cd4694609b4f91c9e0ccab1eed7adba0cdc3f0) add bio to users table - [`53f4fd4`](https://github.com/Mintplex-Labs/anything-llm/commit/53f4fd424ad9b2ae73c6a6f7253e5762f4b166e1) lint - [`d3f4b2f`](https://github.com/Mintplex-Labs/anything-llm/commit/d3f4b2f091c4aaf4d9e400c3d5cbff8e84df4dcf) add bio field to edit user admin page - [`82413ab`](https://github.com/Mintplex-Labs/anything-llm/commit/82413ab36633fbb10991c611778ec1f6939f1335) fix bio saving on new user - [`d7369ea`](https://github.com/Mintplex-Labs/anything-llm/commit/d7369ea3eb7b95d2cc3ba06d49a2dcce6454d317) simplify updating localstorage user - [`15922e4`](https://github.com/Mintplex-Labs/anything-llm/commit/15922e4d869f1c3098d481cc362aefb32bad50e9) linting - [`bbae3b6`](https://github.com/Mintplex-Labs/anything-llm/commit/bbae3b64d772422bfb8b9737ce2417e7b466bbfd) Merge branch 'master' into 3158-feat-user-generic-field ### 📊 Changes **7 files changed** (+74 additions, -8 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/UserMenu/AccountModal/index.jsx` (+15 -1) 📝 `frontend/src/pages/Admin/Users/NewUserModal/index.jsx` (+15 -0) 📝 `frontend/src/pages/Admin/Users/UserRow/EditUserModal/index.jsx` (+28 -1) 📝 `server/endpoints/system.js` (+4 -6) 📝 `server/models/user.js` (+9 -0) ➕ `server/prisma/migrations/20250226005538_init/migration.sql` (+2 -0) 📝 `server/prisma/schema.prisma` (+1 -0) </details> ### 📄 Description ### 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 #3158 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Add `bio` field to users table - Add all CRUD operations for bio on `UserModal` and `Admin/Users` page - Allows user to set their own bio - Allows admins to modify anyone's bio from admin page ### 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:35:29 -05:00
yindo closed this issue 2026-02-22 18:35:29 -05:00
yindo changed title from [PR #3346] Add bio field to user to [PR #3346] [MERGED] Add bio field to user 2026-06-05 15:17:42 -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#4270