-
Notifications
You must be signed in to change notification settings - Fork 494
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update end user object to array of multiple end users
- Loading branch information
1 parent
e578da4
commit 4153710
Showing
1 changed file
with
21 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2775,25 +2775,27 @@ Returns the information of the specified host. | |
"shell": "/bin/zsh" | ||
} | ||
], | ||
"end_user" { | ||
"idp_id": "f26f8649-1e25-42c5-be71-1b1e6de56d3d", | ||
"idp_email": "[email protected]", | ||
"idp_full_name": "Anna Chao", | ||
"idp_groups": [ | ||
"Product", | ||
"Designers" | ||
], | ||
"other_emails": [ | ||
{ | ||
"email": "[email protected]", | ||
"source": "google_chrome_profiles" | ||
}, | ||
{ | ||
"email": "[email protected]", | ||
"source": "custom" | ||
} | ||
] | ||
}, | ||
"end_users" [ | ||
{ | ||
"idp_id": "f26f8649-1e25-42c5-be71-1b1e6de56d3d", | ||
"idp_email": "[email protected]", | ||
"idp_full_name": "Anna Chao", | ||
"idp_groups": [ | ||
"Product", | ||
"Designers" | ||
], | ||
"other_emails": [ | ||
{ | ||
"email": "[email protected]", | ||
"source": "google_chrome_profiles" | ||
}, | ||
{ | ||
"email": "[email protected]", | ||
"source": "custom" | ||
} | ||
] | ||
} | ||
], | ||
"labels": [ | ||
{ | ||
"created_at": "2021-08-19T02:02:17Z", | ||
|