-
Notifications
You must be signed in to change notification settings - Fork 0
/
routing.txt
76 lines (61 loc) · 1.17 KB
/
routing.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
Iskolai pontok
-index.html
-class.html
-student.html
-form_student.html
-form_points.html
middlewares:
renderMW
middlewares/auth
checkPassMW.js
authMW.js
middlewares/student
getStudentsMW.js
getStudentMW.js
saveStudentMW.js
delStudentMW.js
middlewares/points
getPointsMW.js
getPointMW.js
savePointMW.js
delPointMW.js
GET, POST /
checkPassMW
renderMW(index.html)
GET /students/
authMW
getStudentsMW
renderMW(class.html)
GET, POST /students/new/
authMW
saveStudentMW
renderMW(form_student.html (new))
GET, POST /students/edit/:studentid/
authMW
getStudentMW
saveStudentMW
renderMW(form_student.html)
GET /students/del/:studentid/
authMW
getStudentMW
delStudentMW
GET /points/:studentsid/
authMW
getStudentMW
getPointsMW
renderMW(student.html)
GET, POST /points/:studentid/new/
authMW
getStudentMW
savePointMW
renderMW(form_points.html)
GET, POST /points/:studentid/edit/:pointid/
authMW
getStudentMW
getPointMW
savePointMW
renderMW(form_points.html)
GET /points/:studentid/del/:pointid/
authMW
getPointMW
delPointMW