-
Notifications
You must be signed in to change notification settings - Fork 1
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
LPS-121903 Migrate v2 usages in roles/roles-admin-web #835
Conversation
CI is automatically triggering the following test suites:
|
❌ ci:test:sf - 0 out of 1 jobs passed in 3 minutesClick here for more details.Base Branch:Branch Name: master Sender Branch:Branch Name: LPS-121903 1 Failed Jobs:For more details click here.
|
Oops |
ci:test:sf |
✔️ ci:test:sf - 1 out of 1 jobs passed in 4 minutesClick here for more details.Base Branch:Branch Name: master Sender Branch:Branch Name: LPS-121903 1 Successful Jobs:For more details click here. |
Jenkins Build:test-portal-source-format#5041 |
ci:test:relevant |
Jenkins Build:test-portal-source-format#4747 |
❌ ci:test:relevant - 0 out of 1 jobs passed in 2 hours 47 minutesClick here for more details.Base Branch:Branch Name: master Upstream Comparison:Branch GIT ID: bf41ac8d3aa2dbf64656fa7c0635882079d28f09 ci:test:relevant - 0 out of 1 jobs PASSED1 Failed Jobs:For more details click here.Failures unique to this pull:
For upstream results, click here. |
✔️ ci:test:bundle - 1 out of 1 jobs passed in 46 minutesClick here for more details.Base Branch:Branch Name: master ci:test:bundle - 1 out of 1 jobs PASSEDFor more details click here.Test bundle downloads:
|
Hi @julien , the failure doesn't seem to be related to the PR. I've retrigger |
Jenkins Build:test-portal-acceptance-pullrequest(master)#8482 |
@calvinctvo thanks for the help 👍 @drewbrokke if you have time could you please let me know if we can forward this one? |
ci:forward |
CI is automatically triggering the following test suites:
The pull request will automatically be forwarded to the user
|
Skipping previously passed test suites: |
All required test suite(s) passed. |
Pull request has been successfully forwarded to brianchandotcom#99554 |
Jenkins Build:test-portal-acceptance-pullrequest(master)#7852 |
The <clay:management-toolbar-v2 /> tag has been replaced with the
<clay:management-toolbar /> tag (which uses clay v3).
Creating and deleting roles should work as expected, as well as adding or
removing assignees from these roles.
Test plan (1):
Test Plan (2):
Additional notes
Submitting this as a draft before forwarding to @drewbrokke so that @ambrinchaudhary , @john-co and @markocikos can review
This module had an
<aui:script>
that was defining one of the management toolbar's event handler, and at the same time calling that handler depending on values present in session storage. Since this might be hard to understand, this is what I'm referring to.In this change, what I've done is replaced that by using a "propsTransformer" for the management toolbar, another JS module that defines the
addAssignees
function and a<liferay-frontend:component>
to check session storage and conditionally call theaddAssignees
function.I think this is OK and I've actually mentioned it to @drewbrokke to make sure, but I'm adding this here so that everyone following this pull request thread knows why this change was made.