-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathendpoints.json
More file actions
86 lines (86 loc) · 2.27 KB
/
endpoints.json
File metadata and controls
86 lines (86 loc) · 2.27 KB
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
77
78
79
80
81
82
83
84
85
86
[
{
"category": "Sin categoría",
"functionName": "house",
"method": "GET",
"route": "/principal",
"lineStart": 9,
"lineEnd": 10,
"lineCount": 2,
"filePath": "c:\\Users\\cutri\\OneDrive\\Documents\\GitHub\\proyecto_git\\src\\app2.py",
"fileName": "app2.py",
"framework": "Flask",
"complexity": "simple",
"issues": []
},
{
"category": "GET - Obtener todos los usuarios",
"functionName": "get_users",
"method": "GET",
"route": "/users",
"lineStart": 20,
"lineEnd": 21,
"lineCount": 2,
"filePath": "c:\\Users\\cutri\\OneDrive\\Documents\\GitHub\\proyecto_git\\src\\app.py",
"fileName": "app.py",
"framework": "Flask",
"complexity": "simple",
"issues": []
},
{
"category": "GET - Obtener usuario por ID",
"functionName": "get_user",
"method": "GET",
"route": "/users/<int:user_id>",
"lineStart": 25,
"lineEnd": 29,
"lineCount": 5,
"filePath": "c:\\Users\\cutri\\OneDrive\\Documents\\GitHub\\proyecto_git\\src\\app.py",
"fileName": "app.py",
"framework": "Flask",
"complexity": "simple",
"issues": []
},
{
"category": "POST - Crear usuario",
"functionName": "create_user",
"method": "POST",
"route": "/users",
"lineStart": 33,
"lineEnd": 46,
"lineCount": 14,
"filePath": "c:\\Users\\cutri\\OneDrive\\Documents\\GitHub\\proyecto_git\\src\\app.py",
"fileName": "app.py",
"framework": "Flask",
"complexity": "medium",
"issues": []
},
{
"category": "PUT - Actualizar usuario",
"functionName": "update_user",
"method": "PUT",
"route": "/users/<int:user_id>",
"lineStart": 50,
"lineEnd": 59,
"lineCount": 10,
"filePath": "c:\\Users\\cutri\\OneDrive\\Documents\\GitHub\\proyecto_git\\src\\app.py",
"fileName": "app.py",
"framework": "Flask",
"complexity": "simple",
"issues": []
},
{
"category": "DELETE - Eliminar usuario",
"functionName": "delete_user",
"method": "DELETE",
"route": "/users/<int:user_id>",
"lineStart": 63,
"lineEnd": 69,
"lineCount": 7,
"filePath": "c:\\Users\\cutri\\OneDrive\\Documents\\GitHub\\proyecto_git\\src\\app.py",
"fileName": "app.py",
"framework": "Flask",
"complexity": "simple",
"issues": []
}
]