Commit 098ac187 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

refac: naming

parent 4ea2eb79
...@@ -321,7 +321,7 @@ async def get_all_tags(user=Depends(get_current_user)): ...@@ -321,7 +321,7 @@ async def get_all_tags(user=Depends(get_current_user)):
@router.get("/tags/tag/{tag_name}", response_model=List[ChatTitleIdResponse]) @router.get("/tags/tag/{tag_name}", response_model=List[ChatTitleIdResponse])
async def get_user_chats_by_tag_name( async def get_user_chat_list_by_tag_name(
tag_name: str, user=Depends(get_current_user), skip: int = 0, limit: int = 50 tag_name: str, user=Depends(get_current_user), skip: int = 0, limit: int = 50
): ):
chat_ids = [ chat_ids = [
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment