mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-29 22:35:50 -04:00
Config: Move config mocks in own folder
To clean up the config folder, all mocks are now in it's own folder. Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
4dc18c01fb
commit
c1a9eee6a4
15 changed files with 22 additions and 26 deletions
12
src/config/mock/app.config.mock.ts
Normal file
12
src/config/mock/app.config.mock.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||||
*
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
import { registerAs } from '@nestjs/config';
|
||||
|
||||
export default registerAs('appConfig', () => ({
|
||||
port: 3000,
|
||||
forbiddenNoteIds: ['forbiddenNoteId'],
|
||||
}));
|
Loading…
Add table
Add a link
Reference in a new issue