We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ce55b4 commit 07b4ab0Copy full SHA for 07b4ab0
1 file changed
api/routers/upload.py
@@ -13,7 +13,7 @@
13
VALID_TABLES = ["cohort", "course", "financial_aid"]
14
15
16
-@router.get("/", tags=["Upload"])
+@router.get("/")
17
async def upload_info():
18
"""Get information about the upload endpoints."""
19
return {
@@ -42,7 +42,7 @@ async def upload_info():
42
}
43
44
45
-@router.post("/{database}/{table}/upload", tags=["Upload"])
+@router.post("/{database}/{table}/upload")
46
async def upload_data(
47
database: str,
48
table: str,
@@ -131,7 +131,7 @@ async def upload_data(
131
)
132
133
134
-@router.get("/templates/{table}", tags=["Upload"])
+@router.get("/templates/{table}")
135
async def get_template_info(table: str):
136
"""
137
Get template information for a specific table including required and optional fields.
0 commit comments