mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
This feature was not used in 8 years and from frontend did not even properly work anymore and was implemented using deprecated API. So get rid of it. The last version that was using a changelog from the changelog server was Nextcloud 20. We use the firstrunwizard nowadays for informing about Nextcloud changes in new releases. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
35 lines
792 B
JavaScript
35 lines
792 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { loadState } from '@nextcloud/initial-state'
|
|
import Accessibility from './accessibility.js'
|
|
import * as AppConfig from './appconfig.ts'
|
|
import Collaboration from './collaboration.js'
|
|
import * as Comments from './comments.ts'
|
|
import Loader from './loader.js'
|
|
import Toast from './toast.js'
|
|
|
|
/** @namespace OCP */
|
|
export default {
|
|
Accessibility,
|
|
AppConfig,
|
|
Collaboration,
|
|
/**
|
|
* @deprecated 33.0.0
|
|
*/
|
|
Comments,
|
|
InitialState: {
|
|
/**
|
|
* @deprecated 18.0.0 add https://www.npmjs.com/package/@nextcloud/initial-state to your app
|
|
*/
|
|
loadState,
|
|
},
|
|
Loader,
|
|
/**
|
|
* @deprecated 19.0.0 use the `@nextcloud/dialogs` package instead
|
|
*/
|
|
Toast,
|
|
}
|