diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-05-28 10:37:11 +0200 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2024-05-31 15:38:45 -0700 |
commit | dc1ca39f0fd42aca3cf41b47d76a32f990883a97 (patch) | |
tree | 9cca677a9d2b2e9702c52748259957c04c827d11 /apps/files_sharing/src/actions | |
parent | 39ddfb07b59fba74d00a49194bdb16b521d01e6a (diff) | |
download | nextcloud-server-dc1ca39f0fd42aca3cf41b47d76a32f990883a97.tar.gz nextcloud-server-dc1ca39f0fd42aca3cf41b47d76a32f990883a97.zip |
fix(deps): Update `@nextcloud/event-bus` to version 3.3.1
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/files_sharing/src/actions')
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_sharing/src/actions/acceptShareAction.spec.ts b/apps/files_sharing/src/actions/acceptShareAction.spec.ts index b87cbef6a1c..8a063fdf6c0 100644 --- a/apps/files_sharing/src/actions/acceptShareAction.spec.ts +++ b/apps/files_sharing/src/actions/acceptShareAction.spec.ts @@ -22,7 +22,7 @@ import { action } from './acceptShareAction' import { expect } from '@jest/globals' import { File, Permission, View, FileAction } from '@nextcloud/files' -import * as eventBus from '@nextcloud/event-bus' +import eventBus from '@nextcloud/event-bus' import axios from '@nextcloud/axios' import '../main' diff --git a/apps/files_sharing/src/actions/rejectShareAction.spec.ts b/apps/files_sharing/src/actions/rejectShareAction.spec.ts index 292aec4c630..b98396bb3a9 100644 --- a/apps/files_sharing/src/actions/rejectShareAction.spec.ts +++ b/apps/files_sharing/src/actions/rejectShareAction.spec.ts @@ -22,7 +22,7 @@ import { action } from './rejectShareAction' import { expect } from '@jest/globals' import { File, Folder, Permission, View, FileAction } from '@nextcloud/files' -import * as eventBus from '@nextcloud/event-bus' +import eventBus from '@nextcloud/event-bus' import axios from '@nextcloud/axios' import '../main' diff --git a/apps/files_sharing/src/actions/restoreShareAction.spec.ts b/apps/files_sharing/src/actions/restoreShareAction.spec.ts index 44460a62495..55d2a9a3a0a 100644 --- a/apps/files_sharing/src/actions/restoreShareAction.spec.ts +++ b/apps/files_sharing/src/actions/restoreShareAction.spec.ts @@ -22,7 +22,7 @@ import { action } from './restoreShareAction' import { expect } from '@jest/globals' import { File, Permission, View, FileAction } from '@nextcloud/files' -import * as eventBus from '@nextcloud/event-bus' +import eventBus from '@nextcloud/event-bus' import axios from '@nextcloud/axios' import '../main' |