mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-19 09:45:37 -04:00

Co-authored-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Erik Michelson <github@erik.michelson.eu>
29 lines
927 B
TypeScript
29 lines
927 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2025 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { FrontendConfigDto } from '@hedgedoc/commons';
|
|
import { Controller, Get } from '@nestjs/common';
|
|
import { ApiTags } from '@nestjs/swagger';
|
|
|
|
import { FrontendConfigService } from '../../../frontend-config/frontend-config.service';
|
|
import { ConsoleLoggerService } from '../../../logger/console-logger.service';
|
|
import { OpenApi } from '../../utils/decorators/openapi.decorator';
|
|
|
|
@ApiTags('config')
|
|
@Controller('config')
|
|
export class ConfigController {
|
|
constructor(
|
|
private readonly logger: ConsoleLoggerService,
|
|
private frontendConfigService: FrontendConfigService,
|
|
) {
|
|
this.logger.setContext(ConfigController.name);
|
|
}
|
|
|
|
@Get()
|
|
@OpenApi(200)
|
|
async getFrontendConfig(): Promise<FrontendConfigDto> {
|
|
return await this.frontendConfigService.getFrontendConfig();
|
|
}
|
|
}
|