aboutsummaryrefslogtreecommitdiff
path: root/node_simple.js
diff options
context:
space:
mode:
authorkumar <kumar.damani@mail.utoronto.ca>2016-07-27 18:04:42 +0000
committerkumar <kumar.damani@mail.utoronto.ca>2016-07-27 18:04:42 +0000
commit11854aac96d07d7f1f428df693d349b0c38750eb (patch)
tree2dfbdf7dcc1be2b20589dd26914eb77ecbb1c536 /node_simple.js
parentdd90e9fbeef08b3f25c21e3e3725ce6b7d14ff7a (diff)
parent807b2b72e6b83339ecb4f5f23999ce8d22d9db46 (diff)
pull
Merge branch 'master' of https://github.com/HumairAK/solutions_repo
Diffstat (limited to 'node_simple.js')
-rw-r--r--node_simple.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/node_simple.js b/node_simple.js
index 1692527..c787bb0 100644
--- a/node_simple.js
+++ b/node_simple.js
@@ -422,9 +422,6 @@ exports.add_user = function (fields, callbackUser) {
});
};
-
-
-
/**
* This function returns whether the user with the given username has already been signed in before.
* This is important because we need to link a unique facebook account with a username. If the user has signed in
@@ -450,7 +447,6 @@ exports.userVerifiedBefore = function(username, callback) {
});
};
-
/**
* THis function adds the user's facebook account verification to the database and links it to the user's local in site
* account.
@@ -599,7 +595,6 @@ exports.findUserByID = function (id, callback) {
/************************* COURSES / EXAMS **********************************/
-
/**
* Remvove a course from ONLY the courses table IN CASE of accidental
* addition.
@@ -634,7 +629,6 @@ exports.remove_course = function (course_code, callback) {
});
};
-
/**
* This function will add the given exam_id to the given user's followers list.
* It simply appends the exam_id to the list and nothing else.
@@ -684,10 +678,6 @@ exports.followExam = function (user_name, exam_id, callback) {
});
};
-
-
-
-
/**
* This function returns an array where each element contains info for a particular question
* such as the question number (_id), number of solutions (count), and number of comments