* add copy data source * add copy repo * add copy logic to mock db * add copy request interceptor * add data type copy server data source * add copy method to data type repo * add data type copy entity action * show copied notification * update hasChildren flag * use correct icon * note --------- Co-authored-by: Niels Lyngsø <niels.lyngso@gmail.com> Co-authored-by: Niels Lyngsø <nsl@umbraco.dk>
6 lines
196 B
TypeScript
6 lines
196 B
TypeScript
import { UmbRepositoryResponse } from './detail-repository.interface';
|
|
|
|
export interface UmbCopyRepository {
|
|
copy(unique: string, targetUnique: string): Promise<UmbRepositoryResponse<string>>;
|
|
}
|