- *
- * @license GNU AGPL version 3 or any later version
- *
- * 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 .
- *
- */
-
-import Vue from 'vue'
-import { getRequestToken } from '@nextcloud/auth'
-import { translate as t } from '@nextcloud/l10n'
-
-import logger from './logger.js'
-
-import SetupCheck from './components/SetupCheck.vue'
-
-__webpack_nonce__ = btoa(getRequestToken())
-
-Vue.mixin({
- props: {
- logger,
- },
- methods: {
- t,
- },
-})
-
-const SetupCheckView = Vue.extend(SetupCheck)
-new SetupCheckView().$mount('#vue-admin-setup-check')
diff --git a/apps/settings/templates/settings/admin/overview.php b/apps/settings/templates/settings/admin/overview.php
index 69f1479fc16..d8b3674f47e 100644
--- a/apps/settings/templates/settings/admin/overview.php
+++ b/apps/settings/templates/settings/admin/overview.php
@@ -25,7 +25,6 @@
/** @var array $_ */
/** @var \OCP\Defaults $theme */
-\OCP\Util::addScript('settings', 'vue-settings-admin-setup-check');
?>
@@ -67,8 +66,6 @@
-
-
t('Version'));?>
diff --git a/webpack.modules.js b/webpack.modules.js
index 6285f14c9af..67be70c5fed 100644
--- a/webpack.modules.js
+++ b/webpack.modules.js
@@ -90,7 +90,6 @@ module.exports = {
'vue-settings-admin-ai': path.join(__dirname, 'apps/settings/src', 'main-admin-ai.js'),
'vue-settings-admin-delegation': path.join(__dirname, 'apps/settings/src', 'main-admin-delegation.js'),
'vue-settings-admin-security': path.join(__dirname, 'apps/settings/src', 'main-admin-security.js'),
- 'vue-settings-admin-setup-check': path.join(__dirname, 'apps/settings/src', 'main-admin-setup-check.js'),
'vue-settings-apps-users-management': path.join(__dirname, 'apps/settings/src', 'main-apps-users-management.js'),
'vue-settings-nextcloud-pdf': path.join(__dirname, 'apps/settings/src', 'main-nextcloud-pdf.js'),
'vue-settings-personal-info': path.join(__dirname, 'apps/settings/src', 'main-personal-info.js'),