File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1313VALID_TABLES = ["cohort" , "course" , "financial_aid" ]
1414
1515
16- @router .get ("/" , tags = [ "Upload" ] )
16+ @router .get ("/" )
1717async def upload_info ():
1818 """Get information about the upload endpoints."""
1919 return {
@@ -42,7 +42,7 @@ async def upload_info():
4242 }
4343
4444
45- @router .post ("/{database}/{table}/upload" , tags = [ "Upload" ] )
45+ @router .post ("/{database}/{table}/upload" )
4646async def upload_data (
4747 database : str ,
4848 table : str ,
@@ -131,7 +131,7 @@ async def upload_data(
131131 )
132132
133133
134- @router .get ("/templates/{table}" , tags = [ "Upload" ] )
134+ @router .get ("/templates/{table}" )
135135async def get_template_info (table : str ):
136136 """
137137 Get template information for a specific table including required and optional fields.
You can’t perform that action at this time.
0 commit comments