Skip to content

Commit

Permalink
Merge pull request #165 from ImMin5/master
Browse files Browse the repository at this point in the history
Fix typo when get enabled user state
  • Loading branch information
ImMin5 authored Jan 4, 2024
2 parents de3e795 + a549a6d commit 089c82f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spaceone/identity/service/role_binding_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def check_last_workspace_owner_role_binding(
def _get_enabled_user_ids(self, domain_id: str) -> list:
user_vos = self.user_mgr.filter_users(
domain_id=domain_id,
state="DISABLED",
state="ENABLED",
)

return [user_vo.user_id for user_vo in user_vos]
Expand Down

0 comments on commit 089c82f

Please sign in to comment.