mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-25 04:24:43 -04:00

With this commit we drop the subpath support which results in the constraint that HedgeDoc must always run on the root of a domain. This makes a lot of things in testing, rendering and security much easier. Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
32 lines
879 B
TypeScript
32 lines
879 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import type { MediaUpload } from '../../../api/media/types'
|
|
import { HttpMethod, respondToMatchingRequest } from '../../../handler-utils/respond-to-matching-request'
|
|
import { isMockMode, isTestMode } from '../../../utils/test-modes'
|
|
import type { NextApiRequest, NextApiResponse } from 'next'
|
|
|
|
const handler = async (req: NextApiRequest, res: NextApiResponse): Promise<void> => {
|
|
if (isMockMode && !isTestMode) {
|
|
await new Promise((resolve) => {
|
|
setTimeout(resolve, 3000)
|
|
})
|
|
}
|
|
|
|
respondToMatchingRequest<MediaUpload>(
|
|
HttpMethod.POST,
|
|
req,
|
|
res,
|
|
{
|
|
url: '/public/img/avatar.png',
|
|
noteId: null,
|
|
username: 'test',
|
|
createdAt: '2022-02-27T21:54:23.856Z'
|
|
},
|
|
201
|
|
)
|
|
}
|
|
|
|
export default handler
|