Skip to content

Commit 9612c1a

Browse files
committed
fix: lint
1 parent d1ebb6d commit 9612c1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/projects/list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ module.exports = [
675675
};
676676
req.log.info(criteria);
677677
// TODO refactor (DRY) code below so we don't repeat the same logic for admins and non-admin users
678-
if (memberOnly !== 'true' && util.hasPermission(PERMISSION.READ_PROJECT_ANY, req.authUser)) {
678+
if (memberOnly !== 'true' && util.hasPermission(PERMISSION.READ_PROJECT_ANY, req.authUser)) {
679679
// admins & topcoder managers can see all projects
680680
return retrieveProjects(req, criteria, sort, req.query.fields)
681681
.then((result) => {

0 commit comments

Comments
 (0)