mirror of
https://github.com/open-webui/open-webui
synced 2025-06-23 02:16:52 +00:00
refac
This commit is contained in:
parent
577406e00b
commit
cdb4904999
@ -579,7 +579,12 @@ async def clone_chat_by_id(
|
|||||||
|
|
||||||
@router.post("/{id}/clone/shared", response_model=Optional[ChatResponse])
|
@router.post("/{id}/clone/shared", response_model=Optional[ChatResponse])
|
||||||
async def clone_shared_chat_by_id(id: str, user=Depends(get_verified_user)):
|
async def clone_shared_chat_by_id(id: str, user=Depends(get_verified_user)):
|
||||||
chat = Chats.get_chat_by_share_id(id)
|
|
||||||
|
if user.role == "admin":
|
||||||
|
chat = Chats.get_chat_by_id(id)
|
||||||
|
else:
|
||||||
|
chat = Chats.get_chat_by_share_id(id)
|
||||||
|
|
||||||
if chat:
|
if chat:
|
||||||
updated_chat = {
|
updated_chat = {
|
||||||
**chat.chat,
|
**chat.chat,
|
||||||
|
Loading…
Reference in New Issue
Block a user