Update copy.action.ts
This commit is contained in:
@@ -1,12 +1,15 @@
|
||||
import type { UmbEntityBulkActionArgs } from '@umbraco-cms/backoffice/entity-bulk-action';
|
||||
import { UmbEntityBulkActionBase } from '@umbraco-cms/backoffice/entity-bulk-action';
|
||||
import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api';
|
||||
|
||||
export class UmbDocumentCopyEntityBulkAction extends UmbEntityBulkActionBase<never> {
|
||||
constructor(host: UmbControllerHost) {
|
||||
super(host);
|
||||
constructor(host: UmbControllerHost, args: UmbEntityBulkActionArgs<never>) {
|
||||
super(host, args);
|
||||
}
|
||||
|
||||
async execute() {
|
||||
console.log('execute bulk copy');
|
||||
}
|
||||
|
||||
destroy(): void {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user