Skip to content

Commit

Permalink
Merge pull request KelvinTegelaar#2869 from JohnDuprey/dev
Browse files Browse the repository at this point in the history
ListExoRequest change
  • Loading branch information
JohnDuprey authored Aug 30, 2024
2 parents 9eb600c + 07e5358 commit 1570977
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -798,8 +798,14 @@ const ForwardingSettings = ({ refresh }) => {
isSuccess,
error,
} = useGenericPostRequestQuery({
path: `/api/ListExoRequest?Cmdlet=Get-Mailbox&TenantFilter=${tenantDomain}&Select=ForwardingAddress,ForwardingSmtpAddress,DeliverToMailboxAndForward&refresh=${currentRefresh}`,
values: { Identity: userId },
path: `/api/ListExoRequest`,
values: {
TenantFilter: tenantDomain,
Cmdlet: 'Get-Mailbox',
cmdParams: { Identity: userId },
Select: 'ForwardingAddress,ForwardingSmtpAddress,DeliverToMailboxAndForward',
refresh: currentRefresh,
},
})

const {
Expand Down

0 comments on commit 1570977

Please sign in to comment.