[PR #832] [CLOSED] User defined attributes in details form #982

Closed
opened 2026-02-27 09:10:28 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/lldap/lldap/pull/832
Author: @pixelrazor
Created: 2/5/2024
Status: Closed

Base: mainHead: user-ui


📝 Commits (10+)

  • 55225bc ui: add user attributes page
  • 523d418 build(deps): bump actions/cache from 3 to 4
  • 6120a0d server: clean up the attributes, relax the substring filter conditions
  • cf492db Merge branch 'main' into attributes-ui
  • ee72b57 Clippy fixes
  • e947b8e Refactor + review feedback
  • e88db52 split tables
  • 4c47d06 Added maddy example config
  • c9f9a68 add schema to user details query
  • d459ac0 putting a pin in it

📊 Changes

57 files changed (+2579 additions, -947 deletions)

View changed files

📝 .devcontainer/Dockerfile (+1 -1)
📝 .github/codecov.yml (+10 -1)
📝 .github/workflows/docker-build-static.yml (+2 -2)
📝 README.md (+2 -0)
📝 app/Cargo.toml (+2 -0)
app/queries/create_group_attribute.graphql (+5 -0)
app/queries/create_user_attribute.graphql (+5 -0)
app/queries/delete_group_attribute.graphql (+5 -0)
app/queries/delete_user_attribute.graphql (+5 -0)
app/queries/get_group_attributes_schema.graphql (+13 -0)
app/queries/get_user_attributes_schema.graphql (+14 -0)
📝 app/queries/get_user_details.graphql (+14 -0)
📝 app/src/components/app.rs (+19 -107)
app/src/components/avatar.rs (+87 -0)
app/src/components/banner.rs (+132 -0)
📝 app/src/components/change_password.rs (+34 -78)
📝 app/src/components/create_group.rs (+13 -33)
app/src/components/create_group_attribute.rs (+168 -0)
📝 app/src/components/create_user.rs (+52 -155)
app/src/components/create_user_attribute.rs (+175 -0)

...and 37 more files

📄 Description

Ignore for now - Draft PR so sort out where i am after a messy merge


🔄 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/832 **Author:** [@pixelrazor](https://github.com/pixelrazor) **Created:** 2/5/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `user-ui` --- ### 📝 Commits (10+) - [`55225bc`](https://github.com/lldap/lldap/commit/55225bc15bd407101d6a42a51d2816a4e379552f) ui: add user attributes page - [`523d418`](https://github.com/lldap/lldap/commit/523d4184595d419b75983064280b711f69d528d6) build(deps): bump actions/cache from 3 to 4 - [`6120a0d`](https://github.com/lldap/lldap/commit/6120a0dca5b00690158354c7b49577686b630272) server: clean up the attributes, relax the substring filter conditions - [`cf492db`](https://github.com/lldap/lldap/commit/cf492db57048a128e6cc00abaf59cd3a96aea8d3) Merge branch 'main' into attributes-ui - [`ee72b57`](https://github.com/lldap/lldap/commit/ee72b571d02fc40d09491ff3f8bd231ff57c01d5) Clippy fixes - [`e947b8e`](https://github.com/lldap/lldap/commit/e947b8eef0c6e24aaf3fa9b524a5ae1298e91aa3) Refactor + review feedback - [`e88db52`](https://github.com/lldap/lldap/commit/e88db526b4aef43e7814b078866df19e5346f45c) split tables - [`4c47d06`](https://github.com/lldap/lldap/commit/4c47d06c9b8f204303aa53e25d84caa91d030cae) Added maddy example config - [`c9f9a68`](https://github.com/lldap/lldap/commit/c9f9a687a3f75bde1ebce33bd5a53ce4652ad57d) add schema to user details query - [`d459ac0`](https://github.com/lldap/lldap/commit/d459ac0c78226c4303cb691810d119fd23dc7f91) putting a pin in it ### 📊 Changes **57 files changed** (+2579 additions, -947 deletions) <details> <summary>View changed files</summary> 📝 `.devcontainer/Dockerfile` (+1 -1) 📝 `.github/codecov.yml` (+10 -1) 📝 `.github/workflows/docker-build-static.yml` (+2 -2) 📝 `README.md` (+2 -0) 📝 `app/Cargo.toml` (+2 -0) ➕ `app/queries/create_group_attribute.graphql` (+5 -0) ➕ `app/queries/create_user_attribute.graphql` (+5 -0) ➕ `app/queries/delete_group_attribute.graphql` (+5 -0) ➕ `app/queries/delete_user_attribute.graphql` (+5 -0) ➕ `app/queries/get_group_attributes_schema.graphql` (+13 -0) ➕ `app/queries/get_user_attributes_schema.graphql` (+14 -0) 📝 `app/queries/get_user_details.graphql` (+14 -0) 📝 `app/src/components/app.rs` (+19 -107) ➕ `app/src/components/avatar.rs` (+87 -0) ➕ `app/src/components/banner.rs` (+132 -0) 📝 `app/src/components/change_password.rs` (+34 -78) 📝 `app/src/components/create_group.rs` (+13 -33) ➕ `app/src/components/create_group_attribute.rs` (+168 -0) 📝 `app/src/components/create_user.rs` (+52 -155) ➕ `app/src/components/create_user_attribute.rs` (+175 -0) _...and 37 more files_ </details> ### 📄 Description Ignore for now - Draft PR so sort out where i am after a messy merge --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 09:10:28 +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#982
No description provided.