summaryrefslogtreecommitdiffstats
path: root/models/accountSettings.js
diff options
context:
space:
mode:
authorJustin Reynolds <justinr1234@gmail.com>2019-06-28 12:52:09 -0500
committerJustin Reynolds <justinr1234@gmail.com>2019-06-28 12:56:51 -0500
commit3eb4d2c341b712268bd321173909e0a7b19a88c9 (patch)
tree25a8fcb088f3984e72a5bd3ded9e6a45376e0693 /models/accountSettings.js
parenta0a482aa8efb3255a523de4524c8e09453d5571f (diff)
downloadwekan-3eb4d2c341b712268bd321173909e0a7b19a88c9.tar.gz
wekan-3eb4d2c341b712268bd321173909e0a7b19a88c9.tar.bz2
wekan-3eb4d2c341b712268bd321173909e0a7b19a88c9.zip
Prettier & eslint project style update
Diffstat (limited to 'models/accountSettings.js')
-rw-r--r--models/accountSettings.js11
1 files changed, 3 insertions, 8 deletions
diff --git a/models/accountSettings.js b/models/accountSettings.js
index c4240f84..c68e905c 100644
--- a/models/accountSettings.js
+++ b/models/accountSettings.js
@@ -37,7 +37,7 @@ AccountSettings.attachSchema(
}
},
},
- })
+ }),
);
AccountSettings.allow({
@@ -47,11 +47,6 @@ AccountSettings.allow({
},
});
-AccountSettings.before.update((userId, doc, fieldNames, modifier, options) => {
- modifier.$set = modifier.$set || {};
- modifier.$set.modifiedAt = Date.now();
-});
-
if (Meteor.isServer) {
Meteor.startup(() => {
AccountSettings._collection._ensureIndex({ modifiedAt: -1 });
@@ -62,7 +57,7 @@ if (Meteor.isServer) {
booleanValue: false,
sort: 0,
},
- }
+ },
);
AccountSettings.upsert(
{ _id: 'accounts-allowUserNameChange' },
@@ -71,7 +66,7 @@ if (Meteor.isServer) {
booleanValue: false,
sort: 1,
},
- }
+ },
);
});
}