Skip to content

Commit f05ed5c

Browse files
authored
Fix the menu delete interface arg description (#641)
1 parent 187dfa5 commit f05ed5c

File tree

1 file changed

+1
-1
lines changed
  • backend/app/admin/api/v1/sys

1 file changed

+1
-1
lines changed

backend/app/admin/api/v1/sys/menu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ async def update_menu(pk: Annotated[int, Path(description='菜单 ID')], obj: Up
7171
DependsRBAC,
7272
],
7373
)
74-
async def delete_menu(pk: Annotated[int, Path(description='菜单 ID 列表')]) -> ResponseModel:
74+
async def delete_menu(pk: Annotated[int, Path(description='菜单 ID')]) -> ResponseModel:
7575
count = await menu_service.delete(pk=pk)
7676
if count > 0:
7777
return response_base.success()

0 commit comments

Comments
 (0)