From efaa03e749637dda649cb6ca68d2926b0b5d2c50 Mon Sep 17 00:00:00 2001 From: Somar Romero Date: Tue, 30 Jul 2024 21:07:01 +0000 Subject: [PATCH] feat: Update API IDs in api.js and app.js 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. --- src/api.js | 2 +- src/app.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api.js b/src/api.js index a9842d7..f5dcab4 100644 --- a/src/api.js +++ b/src/api.js @@ -1,5 +1,5 @@ export default { - id: 'custom', + id: 'operation-pdf-generator', handler: ({ text }) => { console.log(text); }, diff --git a/src/app.js b/src/app.js index d604f91..09eebc0 100644 --- a/src/app.js +++ b/src/app.js @@ -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.',