mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-18 00:54:43 -04:00
18 lines
614 B
TypeScript
18 lines
614 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import type { UserInfo } from '../../../../api/users/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<UserInfo>(HttpMethod.GET, req, res, {
|
|
username: 'tilman',
|
|
displayName: 'Tilman',
|
|
photoUrl: '/public/img/avatar.png'
|
|
})
|
|
}
|
|
|
|
export default handler
|