Skip to content

Commit

Permalink
feat: Update API IDs in api.js and app.js
Browse files Browse the repository at this point in the history
The API IDs in api.js and app.js have been updated to use "operation-pdf-generator" instead of "custom" and "operation-generate-pdf". This change ensures consistency and clarity in the API naming conventions.
  • Loading branch information
somaromero committed Jul 30, 2024
1 parent eca233b commit efaa03e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/api.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
id: 'custom',
id: 'operation-pdf-generator',
handler: ({ text }) => {
console.log(text);
},
Expand Down
2 changes: 1 addition & 1 deletion src/app.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
id: 'operation-generate-pdf',
id: 'operation-pdf-generator',
name: 'Generate PDF',
icon: 'picture_as_pdf',
description: 'Generate a pdf with flow data and the template.',
Expand Down

0 comments on commit efaa03e

Please sign in to comment.