mirror of
https://github.com/nextcloud/server.git
synced 2026-02-11 14:54:02 -05:00
10 lines
316 B
JavaScript
10 lines
316 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
import rebuildNavigation from './service/rebuild-navigation.js'
|
|
|
|
window.OC.Settings = window.OC.Settings || {}
|
|
window.OC.Settings.Apps = window.OC.Settings.Apps || {
|
|
rebuildNavigation,
|
|
}
|