-
Notifications
You must be signed in to change notification settings - Fork 0
/
mars_endpoints.js
45 lines (45 loc) · 1.93 KB
/
mars_endpoints.js
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
module.exports = {
'/api/adm_ser/admins.GET.js':true,
'/api/adm_ser/admins.PUT.js':true,
'/api/adm_ser/admins/:usr_id.DELETE.js':true,
'/api/adm_ser/admins/:usr_id.GET.js':true,
'/api/adm_ser/admins/search/:search.GET.js':true,
'/api/adm_ser/categories.POST.js':true,
'/api/adm_ser/categories.PUT.js':true,
'/api/adm_ser/categories.GET.js':true,
'/api/adm_ser/categories/:cat_id.GET.js':true,
'/api/adm_ser/categories/:cat_id.DELETE.js':true,
'/api/adm_ser/categories/cat_id_img/:cat_id.GET.js':true,
'/api/adm_ser/categories/cat_id_img/:cat_id.DELETE.js':true,
'/api/adm_ser/categories/search/:search.GET.js':true,
'/api/adm_ser/questions.GET.js':true,
'/api/adm_ser/questions.POST.js':true,
'/api/adm_ser/questions.PUT.js':true,
'/api/adm_ser/questions/:que_id.DELETE.js':true,
'/api/adm_ser/questions/:que_id.GET.js':true,
'/api/adm_ser/questions/search.GET.js':true,
'/api/adm_ser/questions/search/:search.GET.js':true,
'/api/auth/login.POST.js':true,
'/api/auth/logout.GET.js':true,
'/api/ava_ser/avatars.GET.js':true,
'/api/ava_ser/avatars/:ava_id.GET.js':true,
'/api/beta_blast/game.GET.js':true,
'/api/cat_ser/categories.GET.js':true,
'/api/cat_ser/categories.POST.js':true,
'/api/cat_ser/categories.DELETE.js':true,
'/api/cat_ser/categories.PUT.js':true,
'/api/cat_ser/categories/:cat_id.GET.js':true,
'/api/cat_ser/categories/:cat_id.DELETE.js':true,
'/api/cat_usr_leaderboard/leaderboard.GET.js':true,
'/api/cou_ser/countries.GET.js':true,
'/api/cou_ser/countries/:cou_id.GET.js':true,
'/api/que_ser/questions.GET.js':true,
'/api/que_ser/questions.POST.js':true,
'/api/que_ser/questions/random10.GET.js':true,
'/api/register.POST.js':true,
'/api/session.GET.js':true,
'/api/session/:usr_id.GET.js':true,
'/api/usr_pro_ser/users.PUT.js':true,
'/api/usr_pro_ser/users/:usr_id.GET.js':true,
'/api/usr_pro_ser/users/password.PUT.js':true
}