mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 08:15:52 +03:00
[PR #38] [MERGED] Major rework of the front-end #507
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#507
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/38
Author: @nitnelave
Created: 9/19/2021
Status: ✅ Merged
Merged: 9/20/2021
Merged by: @nitnelave
Base:
main← Head:memberships📝 Commits (10+)
93729f1app: Allow admins to change passwordsba55ce4app: Add the group membershipseec513fgraphql: Add methods to add/remove group memberships77974a5graphql: Add a method to list groups045facaapp: Add a way to manage a user's group membershipsd6563e2app: Extract the AddUserToGroup component1e5b47capp: Extract a Select component12e40faapp: Extract the form component from the user details page171571bapp: Extract a RemoveUserFromGroup component69afe4bapp: Add Bootstrap classes.📊 Changes
30 files changed (+1593 additions, -432 deletions)
View changed files
📝
Cargo.lock(+103 -3)📝
Cargo.toml(+8 -4)📝
app/Cargo.toml(+11 -2)📝
app/index.html(+12 -1)➕
app/queries/add_user_to_group.graphql(+5 -0)➕
app/queries/get_group_list.graphql(+6 -0)📝
app/queries/get_user_details.graphql(+4 -0)➕
app/queries/remove_user_from_group.graphql(+5 -0)➕
app/src/components/add_user_to_group.rs(+215 -0)📝
app/src/components/app.rs(+13 -5)📝
app/src/components/change_password.rs(+28 -16)📝
app/src/components/create_user.rs(+228 -79)📝
app/src/components/login.rs(+108 -86)📝
app/src/components/logout.rs(+5 -1)📝
app/src/components/mod.rs(+4 -0)➕
app/src/components/remove_user_from_group.rs(+117 -0)📝
app/src/components/router.rs(+2 -2)➕
app/src/components/select.rs(+112 -0)📝
app/src/components/user_details.rs(+119 -161)➕
app/src/components/user_details_form.rs(+276 -0)...and 10 more files
📄 Description
This adds group membership management functions on the backend, and does a major rework of the front-end, including adding bootstrap classes.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.