Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Commit 457fc5a

Browse files
committed
Fixed linting
1 parent 6e2f1d3 commit 457fc5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

profiles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ module.exports = function (options) {
498498
seneca.act({role: 'cd-users', cmd: 'load_dojo_admins_for_user', userId: profile.userId, user: args.user}, function (err, dojoAdmins) {
499499
if (err) return done(err);
500500
profile.requestingUserIsDojoAdmin = _.find(dojoAdmins, function (dojoAdmin) {
501-
return dojoAdmin.id === args.user ? args.user.id: null;
501+
return dojoAdmin.id === args.user ? args.user.id : null;
502502
});
503503

504504
var allowedFields = [];

0 commit comments

Comments
 (0)