[PR #603] [MERGED] server: prepare DB schema for user attributes #844

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

📋 Pull Request Information

Original PR: https://github.com/lldap/lldap/pull/603
Author: @nitnelave
Created: 6/13/2023
Status: Merged
Merged: 6/14/2023
Merged by: @nitnelave

Base: mainHead: change_schema


📝 Commits (1)

  • f415374 server: prepare DB schema for user attributes

📊 Changes

24 files changed (+1359 additions, -299 deletions)

View changed files

📝 .github/workflows/docker-build-static.yml (+7 -9)
📝 Cargo.lock (+9 -11)
📝 scripts/sqlite_dump_commands.sh (+2 -2)
📝 server/Cargo.toml (+1 -0)
📝 server/src/domain/error.rs (+11 -0)
📝 server/src/domain/handler.rs (+1 -0)
📝 server/src/domain/ldap/group.rs (+4 -6)
📝 server/src/domain/ldap/user.rs (+25 -19)
📝 server/src/domain/ldap/utils.rs (+25 -19)
server/src/domain/model/group_attribute_schema.rs (+39 -0)
server/src/domain/model/group_attributes.rs (+57 -0)
📝 server/src/domain/model/mod.rs (+6 -0)
📝 server/src/domain/model/prelude.rs (+8 -0)
server/src/domain/model/user_attribute_schema.rs (+39 -0)
server/src/domain/model/user_attributes.rs (+57 -0)
📝 server/src/domain/model/users.rs (+4 -13)
📝 server/src/domain/sql_migrations.rs (+441 -116)
📝 server/src/domain/sql_tables.rs (+128 -11)
📝 server/src/domain/sql_user_backend_handler.rs (+308 -70)
📝 server/src/domain/types.rs (+118 -7)

...and 4 more files

📄 Description

First step of #67.


🔄 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/603 **Author:** [@nitnelave](https://github.com/nitnelave) **Created:** 6/13/2023 **Status:** ✅ Merged **Merged:** 6/14/2023 **Merged by:** [@nitnelave](https://github.com/nitnelave) **Base:** `main` ← **Head:** `change_schema` --- ### 📝 Commits (1) - [`f415374`](https://github.com/lldap/lldap/commit/f4153747451367bf52fba0717b0ea8886a81a5b3) server: prepare DB schema for user attributes ### 📊 Changes **24 files changed** (+1359 additions, -299 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/docker-build-static.yml` (+7 -9) 📝 `Cargo.lock` (+9 -11) 📝 `scripts/sqlite_dump_commands.sh` (+2 -2) 📝 `server/Cargo.toml` (+1 -0) 📝 `server/src/domain/error.rs` (+11 -0) 📝 `server/src/domain/handler.rs` (+1 -0) 📝 `server/src/domain/ldap/group.rs` (+4 -6) 📝 `server/src/domain/ldap/user.rs` (+25 -19) 📝 `server/src/domain/ldap/utils.rs` (+25 -19) ➕ `server/src/domain/model/group_attribute_schema.rs` (+39 -0) ➕ `server/src/domain/model/group_attributes.rs` (+57 -0) 📝 `server/src/domain/model/mod.rs` (+6 -0) 📝 `server/src/domain/model/prelude.rs` (+8 -0) ➕ `server/src/domain/model/user_attribute_schema.rs` (+39 -0) ➕ `server/src/domain/model/user_attributes.rs` (+57 -0) 📝 `server/src/domain/model/users.rs` (+4 -13) 📝 `server/src/domain/sql_migrations.rs` (+441 -116) 📝 `server/src/domain/sql_tables.rs` (+128 -11) 📝 `server/src/domain/sql_user_backend_handler.rs` (+308 -70) 📝 `server/src/domain/types.rs` (+118 -7) _...and 4 more files_ </details> ### 📄 Description First step of #67. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 09:09:57 +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#844
No description provided.