Problem
The admin member list endpoint GET /v1/manager/spaces/:space_id/members only matches the keyword query param against user.name and space_member.uid. SSO / email-login users often have an empty name, so admins cannot locate them.
Proposal
Extend the keyword filter to also cover user.username, user.email and user.phone, so members can be searched by username, email, phone, nickname, or UID. Keep list and count queries on the same filter; keep wildcard escaping.
Notes
Implemented in PR #200. Issue filed retroactively to attach the work to Sprint W22 (workflow order was reversed — PR opened before the tracking issue).
Problem
The admin member list endpoint
GET /v1/manager/spaces/:space_id/membersonly matches thekeywordquery param againstuser.nameandspace_member.uid. SSO / email-login users often have an emptyname, so admins cannot locate them.Proposal
Extend the keyword filter to also cover
user.username,user.emailanduser.phone, so members can be searched by username, email, phone, nickname, or UID. Keep list and count queries on the same filter; keep wildcard escaping.Notes
Implemented in PR #200. Issue filed retroactively to attach the work to Sprint W22 (workflow order was reversed — PR opened before the tracking issue).