From 30546ccf12d37f94313e6a81e5f36bd6e3074e45 Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Thu, 7 May 2015 17:51:51 -0500 Subject: [PATCH] remove extraneous comment --- website/src/controllers/groups.js | 1 - 1 file changed, 1 deletion(-) diff --git a/website/src/controllers/groups.js b/website/src/controllers/groups.js index c15d7f7e12..465de6ec08 100644 --- a/website/src/controllers/groups.js +++ b/website/src/controllers/groups.js @@ -442,7 +442,6 @@ api.join = function(req, res, next) { if (!_.contains(group.members, user._id)){ group.members.push(user._id); - //Can we have someone joing without an invite? I added this for testing since we join users without an invite if (group.invites.length > 0) { group.invites.splice(_.indexOf(group.invites, user._id), 1); }