diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-07-31 09:40:53 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-07-31 11:00:33 +0200 |
commit | 3a31397ac29f71db5313ea0e819a1362a019b5cc (patch) | |
tree | c14a1b88ccf1c4a7c57b752314ceec9c0e38b183 /apps/settings/src/components/AdminTwoFactor.vue | |
parent | a384b4a97a2a4444d8e2c831765dbf35c8da0db2 (diff) | |
download | nextcloud-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.vue | 12 |
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) }, |