Change Owner Fixes - #1940
Merged
LadislavVasina1 merged 1 commit intoAug 4, 2025
Merged
Conversation
Contributor
Reviewer's GuideAdapt bulk action workflows for owner and location updates to align with UI changes grouping them under the “Change associations” submenu by adjusting menu navigation calls accordingly. Sequence diagram for updated owner change workflowsequenceDiagram
actor User
participant AllHostsPage
participant BulkActionsMenu
participant ChangeAssociationsMenu
participant ChangeHostsOwnerModal
User->>AllHostsPage: Initiate change_hosts_owner(host_names, new_owner_name)
AllHostsPage->>BulkActionsMenu: Click bulk_actions_kebab
AllHostsPage->>BulkActionsMenu: move_to_element('Change associations')
BulkActionsMenu->>ChangeAssociationsMenu: Open submenu
ChangeAssociationsMenu->>ChangeAssociationsMenu: item_select('Owner')
AllHostsPage->>ChangeHostsOwnerModal: Open modal
ChangeHostsOwnerModal->>ChangeHostsOwnerModal: owner_select.item_select(new_owner_name)
ChangeHostsOwnerModal->>AllHostsPage: Confirm owner change
Sequence diagram for updated location change workflowsequenceDiagram
actor User
participant AllHostsPage
participant BulkActionsMenu
participant ChangeAssociationsMenu
participant ChangeLocationModal
User->>AllHostsPage: Initiate change_associations_location(host_names, new_location)
AllHostsPage->>BulkActionsMenu: Click bulk_actions_kebab
AllHostsPage->>BulkActionsMenu: move_to_element('Change associations')
BulkActionsMenu->>ChangeAssociationsMenu: Open submenu
ChangeAssociationsMenu->>ChangeAssociationsMenu: item_select('Location')
AllHostsPage->>ChangeLocationModal: Open modal
ChangeLocationModal->>ChangeLocationModal: location_menu.item_select(new_location)
ChangeLocationModal->>AllHostsPage: Confirm location change
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Contributor
There was a problem hiding this comment.
Hey @LadislavVasina1 - I've reviewed your changes and they look great!
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
vsedmik
approved these changes
Aug 4, 2025
Contributor
Author
|
PRT passed in SatelliteQE/robottelo#19106 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Navigation to the owner change action changed a little bit.
This PR fixes this.
Needed by: SatelliteQE/robottelo#19106
Summary by Sourcery
Fix bulk action navigation for changing hosts owner and location to match updated 'Change associations' submenu UI.
Bug Fixes: