mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 16:25:55 +03:00
[PR #109] [MERGED] Implement a migration tool from LDAP #549
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#549
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/lldap/lldap/pull/109
Author: @nitnelave
Created: 12/8/2021
Status: ✅ Merged
Merged: 12/8/2021
Merged by: @nitnelave
Base:
main← Head:migration📝 Commits (6)
f12e200migration: Implement import from LDAP8b83e62docker: add migration-tool to the image4f3a2c8server: fix command line version stuck at 0.15b7e5fedocker,git: ignore more files8b4c70eapp: fix clippy warning8cf1781server: fix clippy warning📊 Changes
18 files changed (+1474 additions, -24 deletions)
View changed files
📝
.dockerignore(+11 -5)📝
.github/workflows/rust.yml(+2 -3)📝
.gitignore(+3 -3)📝
Cargo.lock(+250 -3)📝
Cargo.toml(+4 -1)📝
Dockerfile(+4 -3)📝
app/src/infra/cookies.rs(+2 -4)➕
migration-tool/Cargo.toml(+23 -0)➕
migration-tool/queries/add_user_to_group.graphql(+5 -0)➕
migration-tool/queries/create_group.graphql(+6 -0)➕
migration-tool/queries/create_user.graphql(+5 -0)➕
migration-tool/queries/list_groups.graphql(+9 -0)➕
migration-tool/queries/list_users.graphql(+5 -0)➕
migration-tool/src/ldap.rs(+432 -0)➕
migration-tool/src/lldap.rs(+506 -0)➕
migration-tool/src/main.rs(+205 -0)📝
server/src/infra/auth_service.rs(+1 -1)📝
server/src/infra/cli.rs(+1 -1)📄 Description
Fixes #47
This is an interactive migration tool, not really suitable for scripting.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.