Skip to content

Commit

Permalink
LRCI-4241 Update DXP version to fix onAfterAdd triggers & adjust refe…
Browse files Browse the repository at this point in the history
…rences
  • Loading branch information
michaelhashimoto authored and brianchandotcom committed May 21, 2024
1 parent a539401 commit 783816f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@
},
"name": "Jethr0EtcSpringBootAddJob",
"objectActionExecutorKey": "function#liferay-jethr0-etc-spring-boot-object-actions",
"objectActionTriggerKey": "standalone",
"objectActionTriggerKey": "onAfterAdd",
"parameters": {
}
},
Expand Down Expand Up @@ -1075,7 +1075,7 @@
},
"name": "Jethr0EtcSpringBootAddRoutine",
"objectActionExecutorKey": "function#liferay-jethr0-etc-spring-boot-object-actions",
"objectActionTriggerKey": "standalone",
"objectActionTriggerKey": "onAfterAdd",
"parameters": {
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ export async function createJob({data, redirect}) {

const jobsResult = JSON.parse(await jobsResponse.text());

await liferayRequest({
headers,
method: 'PUT',
urlPath: `/o/c/jobs/${jobsResult.id}/object-actions/Jethr0EtcSpringBootAddJob`,
});

if (jobsResult && redirect) {
redirect(jobsResult);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ export async function createRoutine({data, redirect}) {

const routinesResult = JSON.parse(await routinesResponse.text());

await liferayRequest({
headers,
method: 'PUT',
urlPath: `/o/c/routines/${routinesResult.id}/object-actions/Jethr0EtcSpringBootAddRoutine`,
});

if (routinesResult && redirect) {
redirect(routinesResult);
}
Expand Down
2 changes: 1 addition & 1 deletion workspaces/liferay-jethr0-workspace/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
liferay.workspace.bundle.dist.include.metadata=true
liferay.workspace.modules.dir=modules
liferay.workspace.node.package.manager=yarn
liferay.workspace.product=dxp-2023.q4.5
liferay.workspace.product=dxp-2024.q1.8
liferay.workspace.themes.dir=themes
liferay.workspace.wars.dir=modules
microsoft.translator.subscription.key=

0 comments on commit 783816f

Please sign in to comment.