Skip to content

Commit

Permalink
Merge pull request #520 from internxt/fix/2-1-0-release
Browse files Browse the repository at this point in the history
update version
  • Loading branch information
ArceDanielShok authored Oct 2, 2024
2 parents 5e7b4e3 + f578d2a commit c543d22
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "internxt-drive",
"version": "2.1.3",
"version": "2.1.4",
"author": "Internxt <[email protected]>",
"description": "Internxt Drive client UI",
"license": "AGPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "internxt-drive",
"version": "2.1.3",
"version": "2.1.4",
"description": "Internxt Drive client UI",
"main": "./dist/main/main.js",
"author": "Internxt <[email protected]>",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import { ActionNotPermittedError } from '../domain/errors/ActionNotPermittedErro
import { FolderNotFoundError } from '../domain/errors/FolderNotFoundError';
import { AllParentFoldersStatusIsExists } from './AllParentFoldersStatusIsExists';
import { FolderRepository } from '../domain/FolderRepository';
import { RemoteFileSystem } from '../domain/file-systems/RemoteFolderSystem';
import { RemoteFolderSystem } from '../domain/file-systems/RemoteFolderSystem';
import { LocalFolderSystem } from '../domain/file-systems/LocalFolderSystem';

export class FolderDeleter {
constructor(
private readonly repository: FolderRepository,
private readonly remote: RemoteFileSystem,
private readonly remote: RemoteFolderSystem,
private readonly local: LocalFolderSystem,
private readonly allParentFoldersStatusIsExists: AllParentFoldersStatusIsExists
) {}
Expand Down

0 comments on commit c543d22

Please sign in to comment.