summaryrefslogtreecommitdiffstats
path: root/settings/src/main-personal-security.js
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-02-26 19:43:59 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-02-28 17:38:48 +0100
commit4b724751307447cb5153ce4708d6ad9d04a6bff5 (patch)
treeda0e43b8a3e198c3451522ab544a202c3cff4ccc /settings/src/main-personal-security.js
parentfb48abc35ab9d36c6d9eef5fa0ac1fe92bba0f73 (diff)
downloadnextcloud-server-4b724751307447cb5153ce4708d6ad9d04a6bff5.tar.gz
nextcloud-server-4b724751307447cb5153ce4708d6ad9d04a6bff5.zip
Move personal auth token settings to Vue
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> Always crate OC.Settings, even if not used Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'settings/src/main-personal-security.js')
-rw-r--r--settings/src/main-personal-security.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/settings/src/main-personal-security.js b/settings/src/main-personal-security.js
new file mode 100644
index 00000000000..5b481a843ff
--- /dev/null
+++ b/settings/src/main-personal-security.js
@@ -0,0 +1,35 @@
+/*
+ * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @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 <http://www.gnu.org/licenses/>.
+ */
+
+import Vue from 'vue';
+import VueClipboard from 'vue-clipboard2';
+import VTooltip from 'v-tooltip';
+
+import AuthTokenSection from './components/AuthTokenSection';
+
+__webpack_nonce__ = btoa(OC.requestToken);
+
+Vue.use(VueClipboard);
+Vue.use(VTooltip);
+Vue.prototype.t = t;
+
+const View = Vue.extend(AuthTokenSection);
+new View().$mount('#security');