aboutsummaryrefslogtreecommitdiff
path: root/node_simple.js
diff options
context:
space:
mode:
authornanalelfe <nargiza.nosirova@mail.utoronto.ca>2016-07-27 23:07:38 +0000
committernanalelfe <nargiza.nosirova@mail.utoronto.ca>2016-07-27 23:07:38 +0000
commit9b615503ced29ee4a421308d3041ad7bf70e2881 (patch)
treecd53979d86ea0786ab5bd05ba3800bd1b68e11e2 /node_simple.js
parent76d2ef0c64911b449d206df7f206a0d0548266e0 (diff)
parentceba1e6492485dba09ef2989a61c090480543072 (diff)
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