mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 08:15:52 +03:00
[PR #53] [MERGED] Add group management functionality #513
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#513
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/53
Author: @nitnelave
Created: 10/13/2021
Status: ✅ Merged
Merged: 10/15/2021
Merged by: @nitnelave
Base:
main← Head:groups📝 Commits (10+)
63922d3gitignore: Add output ofnpm install rollupb4bfe3bapp: Add a page with the list of groupsb29207eapp: Add navigation banner396f890graphql: Add a method to look up a group's details3dc0bcegraphql: Implement looking up a group's users2a97a2aapp: Implement group managementc093189graphql: Add a method to create a group116f4c5app: Add a page to create a group2db7fb0app: Disable the add user/group buttons when relevantc799f35app: Truncate the user creation date to the day📊 Changes
31 files changed (+1311 additions, -199 deletions)
View changed files
📝
.gitignore(+5 -0)➕
app/queries/create_group.graphql(+6 -0)➕
app/queries/delete_group.graphql(+5 -0)➕
app/queries/get_group_details.graphql(+10 -0)📝
app/queries/list_users.graphql(+6 -0)➕
app/src/components/add_group_member.rs(+204 -0)📝
app/src/components/add_user_to_group.rs(+22 -20)📝
app/src/components/app.rs(+46 -12)📝
app/src/components/change_password.rs(+156 -96)➕
app/src/components/create_group.rs(+152 -0)📝
app/src/components/create_user.rs(+11 -11)➕
app/src/components/delete_group.rs(+160 -0)📝
app/src/components/delete_user.rs(+8 -6)➕
app/src/components/group_details.rs(+229 -0)➕
app/src/components/group_table.rs(+160 -0)📝
app/src/components/login.rs(+13 -8)📝
app/src/components/mod.rs(+5 -0)📝
app/src/components/remove_user_from_group.rs(+16 -23)📝
app/src/components/router.rs(+6 -0)📝
app/src/components/select.rs(+1 -0)...and 11 more files
📄 Description
Also fixes a bunch of small things along the way.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.