aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/src/components/AdminTwoFactor.vue
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-07-31 09:40:53 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-07-31 11:00:33 +0200
commit3a31397ac29f71db5313ea0e819a1362a019b5cc (patch)
treec14a1b88ccf1c4a7c57b752314ceec9c0e38b183 /apps/settings/src/components/AdminTwoFactor.vue
parenta384b4a97a2a4444d8e2c831765dbf35c8da0db2 (diff)
downloadnextcloud-server-3a31397ac29f71db5313ea0e819a1362a019b5cc.tar.gz
nextcloud-server-3a31397ac29f71db5313ea0e819a1362a019b5cc.zip
Use `babel-loader-exclude-node-modules-except`
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/settings/src/components/AdminTwoFactor.vue')
-rw-r--r--apps/settings/src/components/AdminTwoFactor.vue12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/settings/src/components/AdminTwoFactor.vue b/apps/settings/src/components/AdminTwoFactor.vue
index 4d34f8ab937..e05884d22f1 100644
--- a/apps/settings/src/components/AdminTwoFactor.vue
+++ b/apps/settings/src/components/AdminTwoFactor.vue
@@ -86,28 +86,28 @@ export default {
},
computed: {
enforced: {
- get: function() {
+ get() {
return this.$store.state.enforced
},
- set: function(val) {
+ set(val) {
this.dirty = true
this.$store.commit('setEnforced', val)
},
},
enforcedGroups: {
- get: function() {
+ get() {
return this.$store.state.enforcedGroups
},
- set: function(val) {
+ set(val) {
this.dirty = true
this.$store.commit('setEnforcedGroups', val)
},
},
excludedGroups: {
- get: function() {
+ get() {
return this.$store.state.excludedGroups
},
- set: function(val) {
+ set(val) {
this.dirty = true
this.$store.commit('setExcludedGroups', val)
},