summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--models/boards.js2
-rw-r--r--models/users.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/models/boards.js b/models/boards.js
index e0fd81dd..914ded93 100644
--- a/models/boards.js
+++ b/models/boards.js
@@ -560,7 +560,7 @@ if (Meteor.isServer) {
// TODO: This should be changed to be less restrictive!
Authentication.checkUserId(req.userId);
- let data = Boards.find({
+ const data = Boards.find({
archived: false,
'members.userId': req.userId, // TODO: How does the current authentication system work? Can we rely on req.userId to be correct?
}, {
diff --git a/models/users.js b/models/users.js
index 55d0095e..01709f49 100644
--- a/models/users.js
+++ b/models/users.js
@@ -529,7 +529,7 @@ if (Meteor.isServer) {
if (Meteor.isServer) {
JsonRoutes.add('GET', '/api/user', function(req, res, next) {
Authentication.checkLoggedIn(req.userId);
- let data = Meteor.users.findOne({ _id: req.userId});
+ const data = Meteor.users.findOne({ _id: req.userId});
delete data.services;
JsonRoutes.sendResult(res, {
code: 200,