-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Automember > 'User group rules' - Action buttons #626
Conversation
586f9e5
to
9ef61ff
Compare
9ef61ff
to
048f05c
Compare
There are failing tests, looks possibly related? Please confirm if this is ready for review |
048f05c
to
d0a8d97
Compare
I relaunched the tests when rebased, so I guess they should be ok. I will double check them on Monday if some of them failed. Otherwise, green light to review :) |
ecd6691
to
a8c3629
Compare
I need to fix an issue affecting delete and add operations. Will let know when this is ready. |
0d599e9
to
9100313
Compare
@mreynolds389 - Since some tests were failing in multiple PRs (not only in this one), I created a new PR to fix them: #631 The new PR (#631) should be reviewed and merged first before this one (#626) to rebase the changes. This will hopefully keep the tests green. |
The Automember > 'User group rules' main page must take the automember group's data, the associated user groups, and its default group. Signed-off-by: Carla Martinez <[email protected]>
The 'Add' action button on Automembers > 'User groups' main page allows to associate user group rules. Signed-off-by: Carla Martinez <[email protected]>
The 'Delete' button functionality must be implemented to handle the deletion of the Automember rules (User groups). Signed-off-by: Carla Martinez <[email protected]>
The Selector located in the toolbar should show the default group in the automembers page. This functionality should also allow to modify the default group via API command and show the new one. Signed-off-by: Carla Martinez <[email protected]>
The integration test must check the already implemented interaction of the action buttons. Signed-off-by: Carla Martinez <[email protected]>
9100313
to
6fabf1c
Compare
Already rebased this PR with the recent changes. Waiting the tests to execute. |
fe2d0f0
to
7c4b307
Compare
The I created an extra commit to adjust it from here. |
e54b690
to
271ede8
Compare
Sudo rules > Settings test is failing when trying to add a new sudo allow command group. This needs to be selected from a dual list selector and it fails when clicking the arrow to perform a global search. Signed-off-by: Carla Martinez <[email protected]>
271ede8
to
019c1a2
Compare
@mreynolds389 - It seems the problem is fixed 🎉 . Feel free to keep reviewing :) |
@@ -24,6 +26,7 @@ import { | |||
* API commands: | |||
* - automember_default_group_show: https://freeipa.readthedocs.io/en/latest/api/automember_default_group_show.html | |||
* - automember_find: https://freeipa.readthedocs.io/en/latest/api/automember_find.html | |||
* - automember_add: https://freeipa.readthedocs.io/en/latest/api/automember_add.html | |||
*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor but I guess you should add automember_del and automember_default_group_set
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True. I can add them in another PR as it is not critical.
The action buttons for the 'User group rules' page have been implemented. This includes:
Selector
component in toolbarThis PR has been created based on this one: #625