Skip to content

Commit 4fea58a

Browse files
authored
Merge pull request ceph#61285 from cbodley/wip-69462
rgw: /admin/user api dumps account-related user info Reviewed-by: J. Eric Ivancich <[email protected]>
2 parents f1a65d0 + 2f7a94c commit 4fea58a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/rgw/driver/rados/rgw_user.cc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,11 @@ static void dump_user_info(Formatter *f, RGWUserInfo &info,
189189
}
190190
encode_json("type", user_source_type, f);
191191
encode_json("mfa_ids", info.mfa_ids, f);
192+
encode_json("account_id", info.account_id, f);
193+
encode_json("path", info.path, f);
194+
encode_json("create_date", info.create_date, f);
195+
encode_json("tags", info.tags, f);
196+
encode_json("group_ids", info.group_ids, f);
192197
if (stats) {
193198
encode_json("stats", *stats, f);
194199
}

0 commit comments

Comments
 (0)