Skip to content

Commit ada8e5b

Browse files
committed
fix: add missing import
1 parent e52a036 commit ada8e5b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/runtime/server/api/_hub/cache/[...key].delete.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { eventHandler, getRouterParam, createError } from 'h3'
1+
import { eventHandler, getRouterParam, createError, sendNoContent } from 'h3'
22
import { requireNuxtHubAuthorization } from '../../../utils/auth'
33
import { requireNuxtHubFeature } from '../../../utils/features'
44
// @ts-expect-error useStorage not yet typed

src/runtime/server/api/_hub/cache/batch-delete.post.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { eventHandler, readValidatedBody } from 'h3'
1+
import { eventHandler, readValidatedBody, sendNoContent } from 'h3'
22
import { z } from 'zod'
33
import { requireNuxtHubAuthorization } from '../../../utils/auth'
44
import { requireNuxtHubFeature } from '../../../utils/features'

0 commit comments

Comments
 (0)