Skip to content

Commit

Permalink
Return names with people API response (#554)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfreda authored Jan 19, 2024
1 parent bf82637 commit d9bd1c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions internal/api/people.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func PeopleDataHandler(
// Only query for photos and email addresses
// This may be expanded based on use case
// in the future
ReadMask("photos,emailAddresses").
ReadMask("emailAddresses,names,photos").
Sources("DIRECTORY_SOURCE_TYPE_DOMAIN_PROFILE").
Do()
if err != nil {
Expand Down Expand Up @@ -77,7 +77,7 @@ func PeopleDataHandler(
for _, email := range emails {
result, err := s.People.SearchDirectoryPeople().
Query(email).
ReadMask("photos,emailAddresses").
ReadMask("emailAddresses,names,photos").
Sources("DIRECTORY_SOURCE_TYPE_DOMAIN_PROFILE").
Do()

Expand Down
4 changes: 2 additions & 2 deletions internal/api/v2/people.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func PeopleDataHandler(srv server.Server) http.Handler {
// Only query for photos and email addresses
// This may be expanded based on use case
// in the future
ReadMask("photos,emailAddresses").
ReadMask("emailAddresses,names,photos").
Sources("DIRECTORY_SOURCE_TYPE_DOMAIN_PROFILE").
Do()
if err != nil {
Expand Down Expand Up @@ -74,7 +74,7 @@ func PeopleDataHandler(srv server.Server) http.Handler {
for _, email := range emails {
result, err := srv.GWService.People.SearchDirectoryPeople().
Query(email).
ReadMask("photos,emailAddresses").
ReadMask("emailAddresses,names,photos").
Sources("DIRECTORY_SOURCE_TYPE_DOMAIN_PROFILE").
Do()

Expand Down

0 comments on commit d9bd1c6

Please sign in to comment.