[PR #33] [MERGED] User interface #504

Closed
opened 2026-02-27 08:17:47 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/lldap/lldap/pull/33
Author: @nitnelave
Created: 9/3/2021
Status: Merged
Merged: 9/3/2021
Merged by: @nitnelave

Base: mainHead: user_interface


📝 Commits (6)

  • 12f510d app: Fix the user detail view
  • 10312cd schema: make user fields non-nullable
  • 900836f graphql: Add a method to update a user
  • 0d39b5b schema: add a script to re-export the schema
  • d538895 app: Add a way for users to edit their info
  • 8ddb9ee cargo: update dependencies and add a patch to a library

📊 Changes

20 files changed (+612 additions, -339 deletions)

View changed files

📝 .github/workflows/rust.yml (+1 -1)
📝 Cargo.lock (+281 -270)
📝 Cargo.toml (+5 -0)
📝 app/queries/create_user.graphql (+1 -1)
📝 app/queries/get_user_details.graphql (+1 -1)
app/queries/update_user.graphql (+5 -0)
📝 app/src/app.rs (+1 -1)
📝 app/src/create_user.rs (+1 -1)
📝 app/src/user_details.rs (+173 -20)
📝 app/src/user_table.rs (+3 -3)
export_schema.sh (+5 -0)
📝 schema.graphql (+19 -5)
📝 server/Cargo.toml (+1 -1)
📝 server/src/domain/handler.rs (+18 -6)
📝 server/src/domain/sql_backend_handler.rs (+29 -4)
📝 server/src/domain/sql_tables.rs (+7 -3)
📝 server/src/infra/graphql/mutation.rs (+45 -4)
📝 server/src/infra/graphql/query.rs (+6 -6)
📝 server/src/infra/ldap_handler.rs (+9 -12)
📝 server/src/infra/tcp_backend_handler.rs (+1 -0)

📄 Description

Implement the "update user details" from #11 by making user details editable.


🔄 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/lldap/lldap/pull/33 **Author:** [@nitnelave](https://github.com/nitnelave) **Created:** 9/3/2021 **Status:** ✅ Merged **Merged:** 9/3/2021 **Merged by:** [@nitnelave](https://github.com/nitnelave) **Base:** `main` ← **Head:** `user_interface` --- ### 📝 Commits (6) - [`12f510d`](https://github.com/lldap/lldap/commit/12f510d82aad7d33ca041eadd3ae777b9fd43cba) app: Fix the user detail view - [`10312cd`](https://github.com/lldap/lldap/commit/10312cdc6fe480dce3b7ee010d09bf10a75b44f5) schema: make user fields non-nullable - [`900836f`](https://github.com/lldap/lldap/commit/900836fbdbd19f98669ce9486f189fc9349cd59b) graphql: Add a method to update a user - [`0d39b5b`](https://github.com/lldap/lldap/commit/0d39b5b0ab0ea900eb42c1ef021c49f1ed2e4739) schema: add a script to re-export the schema - [`d538895`](https://github.com/lldap/lldap/commit/d53889557ca04a39142f1c867108574c1ae57cda) app: Add a way for users to edit their info - [`8ddb9ee`](https://github.com/lldap/lldap/commit/8ddb9eeca57dc6eaeeb38b1194e8f3dcee9df41c) cargo: update dependencies and add a patch to a library ### 📊 Changes **20 files changed** (+612 additions, -339 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/rust.yml` (+1 -1) 📝 `Cargo.lock` (+281 -270) 📝 `Cargo.toml` (+5 -0) 📝 `app/queries/create_user.graphql` (+1 -1) 📝 `app/queries/get_user_details.graphql` (+1 -1) ➕ `app/queries/update_user.graphql` (+5 -0) 📝 `app/src/app.rs` (+1 -1) 📝 `app/src/create_user.rs` (+1 -1) 📝 `app/src/user_details.rs` (+173 -20) 📝 `app/src/user_table.rs` (+3 -3) ➕ `export_schema.sh` (+5 -0) 📝 `schema.graphql` (+19 -5) 📝 `server/Cargo.toml` (+1 -1) 📝 `server/src/domain/handler.rs` (+18 -6) 📝 `server/src/domain/sql_backend_handler.rs` (+29 -4) 📝 `server/src/domain/sql_tables.rs` (+7 -3) 📝 `server/src/infra/graphql/mutation.rs` (+45 -4) 📝 `server/src/infra/graphql/query.rs` (+6 -6) 📝 `server/src/infra/ldap_handler.rs` (+9 -12) 📝 `server/src/infra/tcp_backend_handler.rs` (+1 -0) </details> ### 📄 Description Implement the "update user details" from #11 by making user details editable. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 08:17:47 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/lldap-lldap#504
No description provided.