Skip to content

Commit

Permalink
fix(notification): adjust notification creation url (#98)
Browse files Browse the repository at this point in the history
Reviewed-By: Evelyn Gurschler <[email protected]>
  • Loading branch information
Phil91 authored May 3, 2024
1 parent 8e16f04 commit ae966e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public async Task AddNotification(string content, Guid requester, NotificationTy
{
using var client = await _tokenService.GetAuthorizedClient<PortalService>(_settings, cancellationToken).ConfigureAwait(ConfigureAwaitOptions.None);
var data = new NotificationRequest(requester, content, notificationTypeId);
await client.PostAsJsonAsync("api/notifications/ssi-credentials", data, Options, cancellationToken)
await client.PostAsJsonAsync("api/notification/ssi-credentials", data, Options, cancellationToken)
.CatchingIntoServiceExceptionFor("notification", HttpAsyncResponseMessageExtension.RecoverOptions.REQUEST_EXCEPTION)
.ConfigureAwait(false);
}
Expand Down

0 comments on commit ae966e9

Please sign in to comment.