make processes able to render a no-code widget output! also search on custom PVS's

This commit is contained in:
2023-02-22 17:50:06 -06:00
parent 4cf8e37e7e
commit 7ea1750800
10 changed files with 368 additions and 21 deletions

View File

@ -50,6 +50,7 @@ import com.kingsrook.qqq.backend.core.model.actions.tables.query.QQueryFilter;
import com.kingsrook.qqq.backend.core.model.actions.tables.query.QueryInput;
import com.kingsrook.qqq.backend.core.model.actions.tables.query.QueryOutput;
import com.kingsrook.qqq.backend.core.model.actions.tables.update.UpdateInput;
import com.kingsrook.qqq.backend.core.model.actions.values.SearchPossibleValueSourceInput;
import com.kingsrook.qqq.backend.core.model.automation.RecordAutomationInput;
import com.kingsrook.qqq.backend.core.model.data.QRecord;
import com.kingsrook.qqq.backend.core.model.metadata.QAuthenticationType;
@ -1093,6 +1094,17 @@ public class TestUtils
{
return (new QPossibleValue<>(idValue, "Custom[" + idValue + "]"));
}
/*******************************************************************************
**
*******************************************************************************/
@Override
public List<QPossibleValue<?>> search(SearchPossibleValueSourceInput input)
{
return (new ArrayList<>());
}
}