mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 14:50:17 -04:00
refactor(theming): move from js/ to src/
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
6248afe544
commit
41e1a995a9
2 changed files with 6 additions and 2 deletions
|
|
@ -1,5 +1,8 @@
|
|||
/**
|
||||
/*!
|
||||
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
OCA.Theming = OCP.InitialState.loadState('theming', 'data')
|
||||
|
||||
import { loadState } from '@nextcloud/initial-state'
|
||||
|
||||
window.OCA.Theming = loadState('theming', 'data')
|
||||
|
|
@ -48,6 +48,7 @@ const modules = {
|
|||
theming: {
|
||||
'settings-personal': resolve(import.meta.dirname, 'apps/theming/src', 'settings-personal.ts'),
|
||||
'settings-admin': resolve(import.meta.dirname, 'apps/theming/src', 'settings-admin.ts'),
|
||||
theming: resolve(import.meta.dirname, 'apps/theming/src', 'theming.ts'),
|
||||
},
|
||||
twofactor_backupcodes: {
|
||||
'settings-personal': resolve(import.meta.dirname, 'apps/twofactor_backupcodes/src', 'settings-personal.ts'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue