/** * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ import './trashbin.scss' import { translate as t } from '@nextcloud/l10n' import DeleteSvg from '@mdi/svg/svg/delete.svg?raw' import { getContents } from './services/trashbin' import { columns } from './columns.ts' // Register restore action import './actions/restoreAction' import { View, getNavigation } from '@nextcloud/files' const Navigation = getNavigation() Navigation.register(new View({ id: 'trashbin', name: t('files_trashbin', 'Deleted files'), caption: t('files_trashbin', 'List of files that have been deleted.'), emptyTitle: t('files_trashbin', 'No deleted files'), emptyCaption: t('files_trashbin', 'Files and folders you have deleted will show up here'), icon: DeleteSvg, order: 50, sticky: true, defaultSortKey: 'deleted', columns, getContents, })) alue='1.1-stable'>1.1-stable Mirror of redmine code source: https://github.com/redmine/redminewww-data
summaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
blob: 94e13c5b254d19c0f9f423d354e6ce77fd28a907 (plain)
1
2
3
4
5
6
7
8
9
10
Your contributions to Redmine are welcome!

Please **open an issue on the [official website]** instead of sending pull requests.

Since the development of Redmine is not conducted on GitHub but on the [official website] and core developers are not monitoring the GitHub repo, pull requests might not get reviewed.

For more detail about how to contribute, please see the wiki page [Contribute] on the [official website].

[official website]: https://www.redmine.org/
[Contribute]: https://www.redmine.org/projects/redmine/wiki/Contribute