diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-12-03 11:18:54 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-12-03 11:18:54 +0200 |
commit | 70fd1ce57d0529ebc35c9877a8a36a21450fb350 (patch) | |
tree | f5e1a18d2202b908f6af58027b68e49932e08720 | |
parent | 97158de70fff526b61cadf4c9819c74bd14c21d4 (diff) | |
download | wekan-70fd1ce57d0529ebc35c9877a8a36a21450fb350.tar.gz wekan-70fd1ce57d0529ebc35c9877a8a36a21450fb350.tar.bz2 wekan-70fd1ce57d0529ebc35c9877a8a36a21450fb350.zip |
Fix lint errors.
-rw-r--r-- | client/components/main/layouts.js | 2 | ||||
-rw-r--r-- | models/settings.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/client/components/main/layouts.js b/client/components/main/layouts.js index 3db228ee..0f64ca14 100644 --- a/client/components/main/layouts.js +++ b/client/components/main/layouts.js @@ -92,7 +92,7 @@ Template.userFormsLayout.events({ event.stopImmediatePropagation(); Meteor.subscribe('user-authenticationMethod', email, { - onReady() { + onReady() { return authentication.call(this, instance, email, password); }, }); diff --git a/models/settings.js b/models/settings.js index 8d067c6d..9ca26c48 100644 --- a/models/settings.js +++ b/models/settings.js @@ -260,7 +260,7 @@ if (Meteor.isServer) { } }, }); - + Jobs.register({ logOut(userId) { Meteor.users.update( |