mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-22 03:05:19 -04:00
refactor: organize app extensions
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
8cddc96881
commit
1e4709c087
209 changed files with 286 additions and 243 deletions
10
frontend/src/extensions/all-app-extensions.ts
Normal file
10
frontend/src/extensions/all-app-extensions.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
||||
*
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
import type { AppExtension } from './_base-classes/app-extension'
|
||||
import { essentialAppExtensions } from './essential-app-extensions/essential-app-extensions'
|
||||
import { externalLibAppExtensions } from './external-lib-app-extensions/external-lib-app-extensions'
|
||||
|
||||
export const allAppExtensions: AppExtension[] = [...essentialAppExtensions, ...externalLibAppExtensions]
|
Loading…
Add table
Add a link
Reference in a new issue