mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-23 19:47:03 -04:00
Refactor handling of environment variables (#2303)
* Refactor environment variables Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
e412115a78
commit
39a4125cb0
85 changed files with 624 additions and 461 deletions
18
src/pages/api/private/groups/hedgedoc-devs.ts
Normal file
18
src/pages/api/private/groups/hedgedoc-devs.ts
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* 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
|
Loading…
Add table
Add a link
Reference in a new issue