mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 22:54:42 -04:00

Doing this BEFORE the merge prevents a lot of merge conflicts. Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
19 lines
590 B
TypeScript
19 lines
590 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import type { Config } from './types'
|
|
import { GetApiRequestBuilder } from '../common/api-request-builder/get-api-request-builder'
|
|
|
|
/**
|
|
* Fetches the frontend config from the backend.
|
|
*
|
|
* @return The frontend config.
|
|
* @throws {Error} when the api request wasn't successful.
|
|
*/
|
|
export const getConfig = async (): Promise<Config> => {
|
|
const response = await new GetApiRequestBuilder<Config>('config').sendRequest()
|
|
return response.asParsedJsonObject()
|
|
}
|