Skip to content

Commit 9bdd591

Browse files
authored
Merge pull request #3686 from bcgov/feat/3669
chore(feat/3669): revert back the query select
2 parents ddf85c5 + 120f28b commit 9bdd591

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/services/msgraph/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export async function listUsersByEmail(email: string) {
6565
const orderby = '$orderby=userPrincipalName';
6666
const count = '$count=true';
6767
const top = '$top=25';
68-
const query = [filter, orderby, count, top].join('&');
68+
const query = [filter, userSelect, orderby, count, top].join('&');
6969

7070
const url = `${M365_URL}/v1.0/users?${query}`;
7171
const res = await sendRequest(url);

0 commit comments

Comments
 (0)