Skip to content

Commit

Permalink
feat: 获取用户组下的角色列表默认获取全部 (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
zgqgit committed Jun 17, 2024
2 parents 6b055e8 + ac172d7 commit 99160eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/bisheng/api/v1/usergroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ async def get_group_resources(*,
async def get_group_roles(*,
group_id: int = Query(..., description="用户组ID"),
keyword: str = Query(None, description="搜索关键字"),
page: int = 1,
limit: int = 10,
page: int = 0,
limit: int = 0,
user: UserPayload = Depends(get_login_user)):
"""
获取用户组内的角色列表
Expand Down

0 comments on commit 99160eb

Please sign in to comment.