Files
openfoodnetwork/app/webpacker/controllers/send_invoice_controller.js
Jean-Baptiste Bellet 5e61aa8a77 Create the bulk send invoice action in order list
using the same pattern than SendConfirmationEmail action

Co-Authored-By: David Cook <david@redcliffs.net>
2023-02-27 14:30:59 +01:00

12 lines
225 B
JavaScript

import BulkActionsController from "./bulk_actions_controller";
export default class extends BulkActionsController {
connect() {
super.connect();
}
confirm() {
super.confirm("SendInvoiceReflex#confirm");
}
}