mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-29 21:17:17 +00:00
using the same pattern than SendConfirmationEmail action Co-Authored-By: David Cook <david@redcliffs.net>
12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
import BulkActionsController from "./bulk_actions_controller";
|
|
|
|
export default class extends BulkActionsController {
|
|
connect() {
|
|
super.connect();
|
|
}
|
|
|
|
confirm() {
|
|
super.confirm("SendInvoiceReflex#confirm");
|
|
}
|
|
}
|