mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 16:25:55 +03:00
[PR #31] [MERGED] Graphql cleanup #503
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#503
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/31
Author: @nitnelave
Created: 8/31/2021
Status: ✅ Merged
Merged: 8/31/2021
Merged by: @nitnelave
Base:
main← Head:graphql_cleanup📝 Commits (10+)
f3a1e0dapp: migrate user_details to graphql endpoint96c93fdgraphql: add an endpoint to create a userf883739app: make a graphql argument required351c726app: fix registration URLscd7424eapp: migrate user creation to GraphQL7c24144model: Inline the BindRequest in the backendbd97a88infra: Remove the TCP API32d21bbapi: inline the ListUsersRequest3e49408app: Fix local timezone not taken into accountbae643euser_table: refactor to clarify view()📊 Changes
46 files changed (+520 additions, -670 deletions)
View changed files
📝
.dockerignore(+2 -1)📝
.github/workflows/rust.yml(+1 -1)📝
.gitignore(+3 -2)📝
Cargo.lock(+5 -3)📝
Cargo.toml(+4 -76)📝
Dockerfile(+2 -2)📝
README.md(+9 -9)📝
app/Cargo.toml(+8 -3)➕
app/queries/create_user.graphql(+6 -0)➕
app/queries/get_user_details.graphql(+10 -0)📝
app/src/api.rs(+3 -24)📝
app/src/create_user.rs(+37 -20)📝
app/src/login.rs(+1 -1)📝
app/src/user_details.rs(+26 -13)📝
app/src/user_table.rs(+31 -31)📝
auth/Cargo.toml(+1 -1)📝
auth/src/lib.rs(+0 -81)📝
auth/src/opaque.rs(+0 -0)📝
schema.graphql(+14 -0)➕
server/Cargo.toml(+75 -0)...and 26 more files
📄 Description
This PR removes the REST API, leaving just the authentication, LDAP and GrahpQL interfaces.
It also does a bunch of cleanups, and moves the folders around for better architecture.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.