mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-21 18:55:19 -04:00

* Refactor environment variables Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
18 lines
599 B
TypeScript
18 lines
599 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import type { NextApiRequest, NextApiResponse } from 'next'
|
|
import { HttpMethod, respondToMatchingRequest } from '../../../../handler-utils/respond-to-matching-request'
|
|
import type { GroupInfo } from '../../../../api/group/types'
|
|
|
|
const handler = (req: NextApiRequest, res: NextApiResponse) => {
|
|
respondToMatchingRequest<GroupInfo>(HttpMethod.GET, req, res, {
|
|
name: 'hedgedoc-devs',
|
|
displayName: 'HedgeDoc devs',
|
|
special: true
|
|
})
|
|
}
|
|
|
|
export default handler
|