This is done to help the students who are learning front end development either React / Angular / Vue to build an application to test out their skills.
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.0.12",
"mongoose-unique-validator": "^3.0.0",
"nodemon": "^2.0.14",
"uuid": "^8.3.2",
"validator": "^13.6.0""
The modules are as follows
- User
- Student
- Course
- Lecture
API's base url - https://dct-e-learning-app.herokuapp.com/api
# | action | method | url | request | response | auth (headers) | Role |
---|---|---|---|---|---|---|---|
1. | register a user (admin) | POST | /admin/register |
|
|
no | no |
2. | login a user (admin) | POST | /admin/login |
|
|
no | no |
3. | get user info | GET | /admin/account | - |
|
{ Authorization : <token>} |
admin |
4. | update user info | PUT | /admin |
|
|
{ Authorization : <token>} |
admin |
# | action | method | url | request | response | auth (headers) | Role |
---|---|---|---|---|---|---|---|
1. | register a student | POST | /admin/students |
|
|
{ Authorization : <token>} |
admin |
2. | login a student | POST | /students/login |
|
|
no | no |
3. | get student information | GET | /students/:id | - |
|
{ Authorization : <token>} |
admin or student |
4. | update student info | PUT | /students/:id |
|
|
{ Authorization : <token>} |
admin |
5. | get all students | GET | /admin/students | - | empty array / array of students | { Authorization : <token>} |
admin |
6. | delete student | DELETE | /admin/students/:id | - |
|
{ Authorization : <token>} |
admin |
# | action | method | url | request | response | auth (headers) | Role |
---|---|---|---|---|---|---|---|
1. | get all courses (admin) | GET | /courses | - | empty array / array of courses | { Authorization : <token>} |
admin |
2. | get all courses (student) | GET | /courses | - | empty array / array of courses | { Authorization : <token>} |
student |
3. | create a course | POST | /courses |
|
|
{ Authorization : <token>} |
admin |
4. | get a course info | GET | /courses/:id | - |
|
{ Authorization : <token>} |
admin or student |
5. | update course info | PUT | /courses/:id |
|
|
{ Authorization : <token>} |
admin |
6. | delete course | DELETE | /courses/:id | - |
|
{ Authorization : <token>} |
admin |
7. | enroll to the course by admin | PATCH | /courses/enroll?courseId=< courseId >&studentId=< studentId > | - |
|
{ Authorization : <token>} |
admin |
8. | unenroll to the course by admin | PATCH | /courses/unenroll?courseId=< courseId >&studentId=< studentId > | - |
|
{ Authorization : <token>} |
admin |
9. | enroll to the course by logged in student | PATCH | /courses/enroll?courseId=< courseId > | - |
|
{ Authorization : <token>} |
student |
10. | unenroll to the course by logged in student | PATCH | /courses/unenroll?courseId=< courseId > | - |
|
{ Authorization : <token>} |
student |
11. | enrolled courses | GET | /courses/enrolled | - | empty array / array of courses | { Authorization : <token>} |
student |
# | action | method | url | request | response | auth (headers) | Role |
---|---|---|---|---|---|---|---|
1. | get all lectures (admin) | GET | /courses/:id/lectures | - | empty array / array of lectures | { Authorization : <token>} |
admin or student |
2. | create a lecture | POST | /courses/:id/lectures |
|
|
{ Authorization : <token>} |
admin |
3. | get a lecture info | GET | /courses/:courseId/lectures/:id | - |
|
{ Authorization : <token>} |
admin or student |
4. | update lecture info | PUT | /courses/:courseId/lectures/:id |
|
|
{ Authorization : <token>} |
admin |
5. | delete lecture | DELETE | /courses/:courseId/lectures/:id | - |
|
{ Authorization : <token>} |
admin |