Skip to content

Commit

Permalink
generic: deprecate create-ticket param
Browse files Browse the repository at this point in the history
  • Loading branch information
DonHaul committed Dec 20, 2024
1 parent 9e78629 commit 80013af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ const AuthorDetailPageContainer: React.FC<AuthorDetailPageContainerProps> = ({
'delete',
].filter(Boolean);

const handleResolveAction = (value: string, createTicket = false) => {
const handleResolveAction = (value: string) => {
dispatch(
resolveAction(id, 'resolve', { value, create_ticket: createTicket })
resolveAction(id, 'resolve', { value})
);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
params={
"workflow_id": Param(type="string", default=""),
"data": Param(type="object", default={}),
"create_ticket": Param(type="boolean", default=False),
"collection": Param(type="string", default=AUTHORS),
},
start_date=datetime.datetime(2024, 5, 5),
Expand Down

0 comments on commit 80013af

Please sign in to comment.