rename delete to trash + fix modal titles

This commit is contained in:
Mads Rasmussen
2023-02-02 20:44:59 +01:00
parent fbcf5495dc
commit be5d9f053e
2 changed files with 5 additions and 5 deletions

View File

@@ -5,5 +5,5 @@ export interface RepositoryDetailDataSource<DetailType> {
get(key: string): Promise<DataSourceResponse<DetailType>>;
insert(data: DetailType): Promise<DataSourceResponse>;
update(data: DetailType): Promise<DataSourceResponse>;
delete(key: string): Promise<DataSourceResponse>;
trash(key: string): Promise<DataSourceResponse>;
}