mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 06:34:39 -04:00
76 lines
1.9 KiB
TypeScript
76 lines
1.9 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import type { FrontendConfig } from '../../../api/config/types'
|
|
import { AuthProviderType } from '../../../api/config/types'
|
|
import { HttpMethod, respondToMatchingRequest } from '../../../handler-utils/respond-to-matching-request'
|
|
import type { NextApiRequest, NextApiResponse } from 'next'
|
|
|
|
const handler = (req: NextApiRequest, res: NextApiResponse) => {
|
|
respondToMatchingRequest<FrontendConfig>(HttpMethod.GET, req, res, {
|
|
allowAnonymous: true,
|
|
allowRegister: true,
|
|
authProviders: [
|
|
{
|
|
type: AuthProviderType.LOCAL
|
|
},
|
|
{
|
|
type: AuthProviderType.LDAP,
|
|
identifier: 'test-ldap',
|
|
providerName: 'Test LDAP'
|
|
},
|
|
{
|
|
type: AuthProviderType.DROPBOX
|
|
},
|
|
{
|
|
type: AuthProviderType.FACEBOOK
|
|
},
|
|
{
|
|
type: AuthProviderType.GITHUB
|
|
},
|
|
{
|
|
type: AuthProviderType.GITLAB,
|
|
identifier: 'test-gitlab',
|
|
providerName: 'Test GitLab'
|
|
},
|
|
{
|
|
type: AuthProviderType.GOOGLE
|
|
},
|
|
{
|
|
type: AuthProviderType.OAUTH2,
|
|
identifier: 'test-oauth2',
|
|
providerName: 'Test OAuth2'
|
|
},
|
|
{
|
|
type: AuthProviderType.SAML,
|
|
identifier: 'test-saml',
|
|
providerName: 'Test SAML'
|
|
},
|
|
{
|
|
type: AuthProviderType.TWITTER
|
|
}
|
|
],
|
|
branding: {
|
|
name: 'DEMO Corp',
|
|
logo: 'public/img/demo.png'
|
|
},
|
|
useImageProxy: false,
|
|
specialUrls: {
|
|
privacy: 'https://example.com/privacy',
|
|
termsOfUse: 'https://example.com/termsOfUse',
|
|
imprint: 'https://example.com/imprint'
|
|
},
|
|
version: {
|
|
major: 2,
|
|
minor: 0,
|
|
patch: 0,
|
|
commit: 'mock'
|
|
},
|
|
plantumlServer: 'https://www.plantuml.com/plantuml',
|
|
maxDocumentLength: 1000000
|
|
})
|
|
}
|
|
|
|
export default handler
|