-
Notifications
You must be signed in to change notification settings - Fork 0
/
challenge-tasks.txt
42 lines (30 loc) · 1.03 KB
/
challenge-tasks.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
task 1
Connected Username Compoenent
A connected React component which takes a single prop, "id"
Component displays the name of the user with the corresponding ID
Can fetch the information during user state assemble (easy) or in real time (hard)
task 2
Add Comments (mendium)
A seperate collection of messages that users have attached to tasks
Properties:
- Who created it
- its contents
- which task it applies to
Required:
- Comment crteate saga
- comment reducer
- comment create route
Task #3
Sign up page Medium
A route accesible through a link on the Login Page
- Don;t have an account? Sign Up
Contains a form which creates a new user on the server
-User creation saga
-User creation route 'user/new'
Task #4
Secure The Application
Logic which is adedd to Express preventing users without right credentios from accessing data
Update Ex[ress routes
-Auth token will be required
-Token will be checked against permission tables to determine if request is valid
-Routes will return a "403 Forbidden" " response on invlide credentials