remove repository action
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
import type { UmbApi } from '@umbraco-cms/backoffice/extension-api';
|
||||
|
||||
export interface UmbAction<RepositoryType = unknown> extends UmbApi {
|
||||
repository?: RepositoryType;
|
||||
export interface UmbAction extends UmbApi {
|
||||
execute(): Promise<void>;
|
||||
}
|
||||
|
||||
@@ -1,3 +1,2 @@
|
||||
export * from './repository-action.js';
|
||||
export * from './action.interface.js';
|
||||
export * from './action-event.context.js';
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api';
|
||||
import { UmbControllerBase } from '@umbraco-cms/backoffice/class-api';
|
||||
import type { UmbApi } from '@umbraco-cms/backoffice/extension-api';
|
||||
|
||||
export abstract class UmbActionBase extends UmbControllerBase implements UmbApi {
|
||||
constructor(host: UmbControllerHost) {
|
||||
super(host);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user