diff --git a/server/controller/community.ts b/server/controller/community.ts index 0f91dbd..c696034 100644 --- a/server/controller/community.ts +++ b/server/controller/community.ts @@ -203,7 +203,6 @@ const communityController = (socket: FakeSOSocket) => { router.get('/getRelevantCommunities', getRelevantCommunities); router.patch('/addUserToCommunity/:communityName', addUserToCommunity); router.patch('/updateCommunityQuestions/:communityName', updateCommunityQuestions); - router.get('/getCommunityMembers/:community', getCommunityMembers); return router; };