mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-09 13:51:57 -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>
20 lines
679 B
TypeScript
20 lines
679 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import type { LoginUserInfo } from '../../../../api/me/types'
|
|
import { HttpMethod, respondToMatchingRequest } from '../../../../handler-utils/respond-to-matching-request'
|
|
import type { NextApiRequest, NextApiResponse } from 'next'
|
|
|
|
const handler = (req: NextApiRequest, res: NextApiResponse): void => {
|
|
respondToMatchingRequest<LoginUserInfo>(HttpMethod.GET, req, res, {
|
|
username: 'mock',
|
|
photo: '/public/img/avatar.png',
|
|
displayName: 'Mock User',
|
|
authProvider: 'local',
|
|
email: 'mock@hedgedoc.test'
|
|
})
|
|
}
|
|
|
|
export default handler
|