Please enable JavaScript.
Coggle requires JavaScript to display documents.
Backend, Dashboard - Coggle Diagram
Backend
Routes
Testbank
/testbank/:id GET :black_flag:
/testbank GET :black_flag:
/testbank/:id PUT :black_flag:
/testbank/:id DELETE :black_flag:
/:testbankId :star:
Exams
/exams GET :black_flag:
/exams/:id GET :black_flag:
/exams POST :black_flag:
/exams/:id PUT :black_flag:
/exams/:id DELETE :black_flag:
/examId :star:
/user/:id/grades GET :black_flag:
/user/:id/grades/:id GET :black_flag:
/gradeId :star:
User
/user/:id GET :black_flag:
/user/:id PUT :black_flag:
/login/:id GET :black_flag:
/:userId :star:
Notebooks
/notebooks GET :black_flag:
/notebooks/:id GET :black_flag:
/notebooks/:id POST :black_flag:
/notebooks/:id PUT :black_flag:
/notebooks/:id DELETE :black_flag:
/notebookId :star:
Auth
signup POST :black_flag:
login POST :black_flag:
Videos
/videoId
/video/videoId GET
/video PUT
video/videoId Delete
getAllVideos
Course
Controllers
Notebooks
getNotebookById :recycle: :star:
getNotebook :black_flag:
updateNotebook :black_flag:
addNotebook :black_flag:
deleteNotebook :black_flag:
getAllNotebooks :black_flag:
Exams
getExamById :recycle: :star:
getExam :black_flag:
getAllExams :black_flag:
getGrades :black_flag:
updateExam :black_flag:
addExam :black_flag:
getGradeById :recycle: :star:
Testbank
getTestbankById :recycle: :star:
removeTestbank :black_flag:
getTestbank :black_flag:
getAllTestbanks :black_flag:
updateTestbank :black_flag:
addTestbank :black_flag:
User
getUserById :recycle: :star:
updateUser :black_flag:
getExams :black_flag:
getNotebooks :black_flag:
getCourses :black_flag:
Auth
login POST :black_flag:
signup POST :black_flag:
Course
Video
getVideoById
getVideo
addVideo
updateVideo
deleteVideo
Models
Course
Video
User
Notebook
Software
Exam
Testbank
Validators
isSignedIn :recycle:
isAuthenticated :recycle:
isAdmin :recycle:
requiredFields :recycle:
duplicatedEmail :recycle:
emailNotFound :recycle:
Handlers
errorHandler :recycle:
wildcard handler :recycle:
Dashboard
Auth
Courses
Testbanks
Videos
Notebooks
Exams
Softwares