create language via href

This commit is contained in:
Niels Lyngsø
2023-05-24 12:55:14 +02:00
parent f6a510f371
commit 78c6b83d8a
10 changed files with 55 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
import { UmbAction, UmbActionBase } from './action';
import { UmbAction, UmbActionBase } from './repository-action';
import { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller-api';
export interface UmbEntityAction<RepositoryType> extends UmbAction<RepositoryType> {

View File

@@ -1,4 +1,4 @@
import { UmbAction, UmbActionBase } from './action';
import { UmbAction, UmbActionBase } from './repository-action';
import { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller-api';
export interface UmbEntityBulkAction<RepositoryType = unknown> extends UmbAction<RepositoryType> {

View File

@@ -1,4 +1,4 @@
export * from './action';
export * from './repository-action';
export * from './entity-action';
export * from './entity-bulk-action';
export * from './actions';