Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feedback #1

Open
wants to merge 44 commits into
base: feedback
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
8671177
Setting up GitHub Classroom Feedback
github-classroom[bot] Aug 29, 2022
ac52c51
add gitignore for nodemodules and .env (#2)
tanwayne890 Sep 5, 2022
1ef2de9
[FR2.1] and setup for [FR2.2] (#4)
tanwayne890 Sep 5, 2022
6bd27b5
Matching feature FR2.2-2.5 (#7)
oliviajohansen Sep 9, 2022
c88f4bf
Add GitHub workflow (#8)
oliviajohansen Sep 9, 2022
e22ae64
FR 1.2 - 1.3 and NFR 1 (#6)
hopinxian Sep 11, 2022
a2790fd
Set up redux store and save user in redux (#15)
oliviajohansen Sep 12, 2022
c67aa56
Delete user API (#16)
TianYong-Goh Sep 22, 2022
c4b1dc5
Reset password API (#17)
TianYong-Goh Sep 23, 2022
630eee8
Change sqlite to mongodb (#18)
tanwayne890 Sep 29, 2022
e635b59
Frontend (#21)
TianYong-Goh Sep 30, 2022
a469861
Fix difficulty selected not being handled correctly (#27)
oliviajohansen Oct 1, 2022
69f82c0
Collaboration service (#23)
oliviajohansen Oct 1, 2022
4b81185
Logout user (#25)
TianYong-Goh Oct 8, 2022
789c83d
Delete user (#32)
TianYong-Goh Oct 8, 2022
fc9c40b
Reset password (#35)
TianYong-Goh Oct 8, 2022
e287309
Add question service (#34)
tanwayne890 Oct 11, 2022
34da7ce
Add Communication service (#33)
hopinxian Oct 11, 2022
2222102
Refactor Frontend And Add Protected Routing (#38)
TianYong-Goh Oct 11, 2022
1269cd5
Matching and collab service sockets and handle edge cases (#37)
oliviajohansen Oct 12, 2022
31b5a4e
QoL Update: run all services in the same terminal (#36)
hopinxian Oct 20, 2022
b571e94
Update with npm i and remove userinfo api (#41)
hopinxian Oct 20, 2022
3bd9c70
Add backend for history-service (#44)
tanwayne890 Oct 27, 2022
a1eec94
Set up deployment (#42)
hopinxian Oct 28, 2022
e7fa3b2
[Backend] Enhancement on history-service and question-service (#50)
tanwayne890 Nov 4, 2022
3402c4d
Fix voice socket not disconnecting (#45)
hopinxian Nov 4, 2022
e236c99
Fix routing (#51)
TianYong-Goh Nov 4, 2022
5aff3d6
Some collab improvements (#46)
oliviajohansen Nov 4, 2022
e8f2119
Add frontend for history and fix matching (#49)
TianYong-Goh Nov 4, 2022
65a517e
Update app yaml (#52)
hopinxian Nov 4, 2022
e2ea3c3
Add viewing logs to README
hopinxian Nov 4, 2022
f8b3b0b
Remove check for duplicate user in collab model (#53)
oliviajohansen Nov 4, 2022
bbb12b3
add redis to question service (#54)
TianYong-Goh Nov 4, 2022
66f3c2d
Remove specific path for matching service (#58)
oliviajohansen Nov 6, 2022
eced4dc
Change React Quill to Quill (#57)
oliviajohansen Nov 6, 2022
1c249b8
Add testing for communication and collaboration service (#56)
hopinxian Nov 7, 2022
3bbfd1c
Use Yjs for crdt (#59)
oliviajohansen Nov 7, 2022
34d73d1
improve ui and resolve newline omitted problem (#55)
TianYong-Goh Nov 7, 2022
b0e2be4
add user service api test (#60)
TianYong-Goh Nov 8, 2022
c3afc33
Update socket test (#62)
hopinxian Nov 8, 2022
904c8e7
[Test] Add tests for matching, history and question service (#61)
tanwayne890 Nov 8, 2022
b6cb01d
Update frontend (#63)
TianYong-Goh Nov 9, 2022
240f537
Uncomment send email function
hopinxian Nov 9, 2022
77b6efc
Update readme and env.sample (#64)
oliviajohansen Nov 9, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Uncomment send email function
hopinxian committed Nov 9, 2022
commit 240f53794cbb708f59d35061c86e3893b607f4bd
2 changes: 1 addition & 1 deletion user-service/model/user-orm.js
Original file line number Diff line number Diff line change
@@ -89,7 +89,7 @@ export async function ormForgetPassword(username) {
const link = URI_FRONTEND + `/reset-password/${token}`;
console.log(link);
const userEmail = await getEmail(username);
// sendLink(userEmail,link);
sendLink(userEmail,link);
return { message: 'Reset link has been sent to your email.'};
} catch (err) {
return { message: 'Fail to send the reset link. Please try again later.'};