diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-10-19 15:15:12 +0200 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2022-11-28 17:29:11 +0100 |
commit | 2c50153618cbbf227704a274cfc46e0ec071b525 (patch) | |
tree | 10d06076b0a4808fbaac0b85f71c8aa356bee8b9 /apps/files_versions/src/filesplugin.js | |
parent | cd7cec587ed7048b6a5536d69bce904f9eadc598 (diff) | |
download | nextcloud-server-2c50153618cbbf227704a274cfc46e0ec071b525.tar.gz nextcloud-server-2c50153618cbbf227704a274cfc46e0ec071b525.zip |
Port files_versions to vue
Simplify code and make it use our standard components
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/files_versions/src/filesplugin.js')
-rw-r--r-- | apps/files_versions/src/filesplugin.js | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/apps/files_versions/src/filesplugin.js b/apps/files_versions/src/filesplugin.js deleted file mode 100644 index 90dac2024c1..00000000000 --- a/apps/files_versions/src/filesplugin.js +++ /dev/null @@ -1,46 +0,0 @@ -/** - * Copyright (c) 2015 - * - * @author John Molakvoæ <skjnldsv@protonmail.com> - * @author Vincent Petry <vincent@nextcloud.com> - * - * @license AGPL-3.0-or-later - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * - */ - -(function() { - OCA.Versions = OCA.Versions || {} - - /** - * @namespace - */ - OCA.Versions.Util = { - /** - * Initialize the versions plugin. - * - * @param {OCA.Files.FileList} fileList file list to be extended - */ - attach(fileList) { - if (fileList.id === 'trashbin' || fileList.id === 'files.public') { - return - } - - fileList.registerTabView(new OCA.Versions.VersionsTabView('versionsTabView', { order: -10 })) - }, - } -})() - -OC.Plugins.register('OCA.Files.FileList', OCA.Versions.Util) |