Skip to content
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

JNG-5826 Fixing operation name #438

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ export default function GodGodEarthAccessViewPage() {
// if the `target` is missing we are likely navigating to a relation table page, in which case we need the owner's id
navigate(routeToViewPlanetCreaturesRelationViewPage(((target as ViewCreatureStored) || data).__signedIdentifier));
};
// ParameterlessCallOperationAction: God/(esm/_6l6P0TV7Ee-rMcMaep1uNQ)/OperationFormTableTableCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
// ParameterlessCallOperationAction: God/(esm/_ZggBoT0wEe-oxNmZsPxMmA)/OperationFormTableTableCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
const creaturesChooseTheMessiahForPlanetAction = async (target?: ViewPlanetStored) => {
try {
setIsLoading(true);
Expand All @@ -471,7 +471,7 @@ export default function GodGodEarthAccessViewPage() {
setIsLoading(false);
}
};
// OpenOperationInputFormAction: God/(esm/_R_BrUTV8Ee-rMcMaep1uNQ)/OperationFormTableTableCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
// OpenOperationInputFormAction: God/(esm/_Tr7a8T0wEe-oxNmZsPxMmA)/OperationFormTableTableCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
const creaturesCreateCreatureAction = async (
target: ViewPlanetStored,
isDraft?: boolean,
Expand All @@ -484,7 +484,7 @@ export default function GodGodEarthAccessViewPage() {
await refresh();
}
};
// ParameterlessCallOperationAction: God/(esm/_3_lGwTV7Ee-rMcMaep1uNQ)/OperationFormTableRowCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
// ParameterlessCallOperationAction: God/(esm/_a2C4QT0wEe-oxNmZsPxMmA)/OperationFormTableRowCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
const creaturesHateGodForCreatureAction = async (target?: ViewCreatureStored) => {
try {
setIsLoading(true);
Expand All @@ -504,7 +504,7 @@ export default function GodGodEarthAccessViewPage() {
setIsLoading(false);
}
};
// ParameterlessCallOperationAction: God/(esm/_3_lGwzV7Ee-rMcMaep1uNQ)/OperationFormTableRowCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
// ParameterlessCallOperationAction: God/(esm/_a2C4Qz0wEe-oxNmZsPxMmA)/OperationFormTableRowCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
const creaturesLoveGodForCreatureAction = async (target?: ViewCreatureStored) => {
try {
setIsLoading(true);
Expand All @@ -524,7 +524,7 @@ export default function GodGodEarthAccessViewPage() {
setIsLoading(false);
}
};
// OpenOperationInputSelectorAction: God/(esm/_ASgmQTV8Ee-rMcMaep1uNQ)/OperationFormTableTableCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
// OpenOperationInputSelectorAction: God/(esm/_VRoNcT0wEe-oxNmZsPxMmA)/OperationFormTableTableCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
const creaturesPunishCreatureAction = async (target?: ViewPlanetStored) => {
const { result, data: returnedData } =
await openViewPlanetViewGroup_2RightCreaturesPunishCreatureRelationTableCallSelector({
Expand All @@ -534,7 +534,7 @@ export default function GodGodEarthAccessViewPage() {
await refresh();
}
};
// OpenOperationInputSelectorAction: God/(esm/_AShNUTV8Ee-rMcMaep1uNQ)/OperationFormTableTableCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
// OpenOperationInputSelectorAction: God/(esm/_VRoNcz0wEe-oxNmZsPxMmA)/OperationFormTableTableCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
const creaturesRewardCreatureAction = async (target?: ViewPlanetStored) => {
const { result, data: returnedData } =
await openViewPlanetViewGroup_2RightCreaturesRewardCreatureRelationTableCallSelector({
Expand All @@ -544,7 +544,7 @@ export default function GodGodEarthAccessViewPage() {
await refresh();
}
};
// OpenOperationInputSelectorAction: God/(esm/_3_lGxTV7Ee-rMcMaep1uNQ)/OperationFormTableRowCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
// OpenOperationInputSelectorAction: God/(esm/_a2C4RT0wEe-oxNmZsPxMmA)/OperationFormTableRowCallAction/(discriminator/God/(esm/_QKcpkE7vEeycO-gUAWxcVg)/TabularReferenceField)
const creaturesTalkToGodAction = async (target?: ViewPlanetStored) => {
const { result, data: returnedData } =
await openViewPlanetViewGroup_2RightCreaturesTalkToGodRelationTableCallSelector({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export default function GodGodGalaxiesAccessTablePage() {
// if the `target` is missing we are likely navigating to a relation table page, in which case we need the owner's id
navigate(routeToGodGodGalaxiesAccessViewPage((target as ViewGalaxyStored)!.__signedIdentifier));
};
// OpenOperationInputFormAction: God/(esm/_uqp7kDV3Ee-rMcMaep1uNQ)/OperationFormTableRowCallAction/(discriminator/God/(esm/_4pyPkM_cEe6fibzd7gNETg)/AccessTablePageDefinition)
// OpenOperationInputFormAction: God/(esm/_9MKM0T0wEe-oxNmZsPxMmA)/OperationFormTableRowCallAction/(discriminator/God/(esm/_4pyPkM_cEe6fibzd7gNETg)/AccessTablePageDefinition)
const createDarkMatterAction = async (
target: ViewGalaxyStored,
isDraft?: boolean,
Expand All @@ -221,7 +221,7 @@ export default function GodGodGalaxiesAccessTablePage() {
await refresh();
}
};
// OpenOperationInputFormAction: God/(esm/_uqqioTV3Ee-rMcMaep1uNQ)/OperationFormTableRowCallAction/(discriminator/God/(esm/_4pyPkM_cEe6fibzd7gNETg)/AccessTablePageDefinition)
// OpenOperationInputFormAction: God/(esm/_9MKz4T0wEe-oxNmZsPxMmA)/OperationFormTableRowCallAction/(discriminator/God/(esm/_4pyPkM_cEe6fibzd7gNETg)/AccessTablePageDefinition)
const createIntergalacticDustAction = async (
target: ViewGalaxyStored,
isDraft?: boolean,
Expand All @@ -234,7 +234,7 @@ export default function GodGodGalaxiesAccessTablePage() {
await refresh();
}
};
// OpenOperationInputFormAction: God/(esm/_uqqiozV3Ee-rMcMaep1uNQ)/OperationFormTableRowCallAction/(discriminator/God/(esm/_4pyPkM_cEe6fibzd7gNETg)/AccessTablePageDefinition)
// OpenOperationInputFormAction: God/(esm/_9MKz4z0wEe-oxNmZsPxMmA)/OperationFormTableRowCallAction/(discriminator/God/(esm/_4pyPkM_cEe6fibzd7gNETg)/AccessTablePageDefinition)
const createInterstellarMediumAction = async (
target: ViewGalaxyStored,
isDraft?: boolean,
Expand Down
Loading
Loading