aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/src/main-personal-info.js
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-08-29 14:53:27 +0200
committerGitHub <noreply@github.com>2022-08-29 14:53:27 +0200
commitd7deeb4e02121e2b4f07b4b02c9c6fc7fd70b137 (patch)
tree8b698aaa2fb11c3805b935685e9ad27bed68eb6c /apps/settings/src/main-personal-info.js
parent1b577d348b32149b06493dd860a937ec8b7a6cc2 (diff)
parentd7821f8474be0146b9ac67d130f497bcb776ed9e (diff)
downloadnextcloud-server-d7deeb4e02121e2b4f07b4b02c9c6fc7fd70b137.tar.gz
nextcloud-server-d7deeb4e02121e2b4f07b4b02c9c6fc7fd70b137.zip
Merge pull request #33311 from nextcloud/enh/27869/phone
Remake phone number property saving with Vue
Diffstat (limited to 'apps/settings/src/main-personal-info.js')
-rw-r--r--apps/settings/src/main-personal-info.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/settings/src/main-personal-info.js b/apps/settings/src/main-personal-info.js
index 1b6d56a262a..32d8bfc8b45 100644
--- a/apps/settings/src/main-personal-info.js
+++ b/apps/settings/src/main-personal-info.js
@@ -28,6 +28,7 @@ import '@nextcloud/dialogs/styles/toast.scss'
import DisplayNameSection from './components/PersonalInfo/DisplayNameSection.vue'
import EmailSection from './components/PersonalInfo/EmailSection/EmailSection.vue'
+import PhoneSection from './components/PersonalInfo/PhoneSection.vue'
import LocationSection from './components/PersonalInfo/LocationSection.vue'
import WebsiteSection from './components/PersonalInfo/WebsiteSection.vue'
import TwitterSection from './components/PersonalInfo/TwitterSection.vue'
@@ -51,6 +52,7 @@ Vue.mixin({
const DisplayNameView = Vue.extend(DisplayNameSection)
const EmailView = Vue.extend(EmailSection)
+const PhoneView = Vue.extend(PhoneSection)
const LocationView = Vue.extend(LocationSection)
const WebsiteView = Vue.extend(WebsiteSection)
const TwitterView = Vue.extend(TwitterSection)
@@ -58,6 +60,7 @@ const LanguageView = Vue.extend(LanguageSection)
new DisplayNameView().$mount('#vue-displayname-section')
new EmailView().$mount('#vue-email-section')
+new PhoneView().$mount('#vue-phone-section')
new LocationView().$mount('#vue-location-section')
new WebsiteView().$mount('#vue-website-section')
new TwitterView().$mount('#vue-twitter-section')