Skip to content

Commit

Permalink
Merge pull request #24 from LycraLout/master-8p2Compatibility
Browse files Browse the repository at this point in the history
Removed field that was causing an error in version 8.2
  • Loading branch information
rappen committed Nov 15, 2021
2 parents f9f8d36 + 0be3384 commit 2209d1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CAT/CATTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public Customapi.BindingType_OptionSet BindingType(Entity ca)
public QueryExpression GetActionQuery(Guid solutionid)
{
var qx = new QueryExpression("workflow");
qx.ColumnSet.AddColumns("name", "uniquename", "createdby", "primaryentity", "scope", "mode", "ismanaged", "iscustomizable", "istransacted", "iscustomprocessingstepallowedforotherpublishers", "inputparameters", "description");
qx.ColumnSet.AddColumns("name", "uniquename", "createdby", "primaryentity", "scope", "mode", "ismanaged", "iscustomizable", "istransacted", "inputparameters", "description");
qx.AddOrder("ismanaged", OrderType.Descending);
qx.AddOrder("name", OrderType.Ascending);
qx.Criteria.AddCondition("category", ConditionOperator.Equal, 3);
Expand Down

0 comments on commit 2209d1b

Please sign in to comment.