Skip to content

Commit

Permalink
Improved the Messaging docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
uncheckederror committed Aug 5, 2023
1 parent 0af2e3b commit 56ff247
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Messaging/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@
return TypedResults.BadRequest(ex.Message);
}
})
.RequireAuthorization().WithOpenApi(x => new(x) { Summary = "View all sent and received messages.", Description = "This is intended to help you debug problems with message sending and delivery so you can see if it's this API or the upstream vendor that is causing problems." });
.RequireAuthorization().WithOpenApi(x => new(x) { Summary = "View all sent and received messages that failed.", Description = "This is intended to help you debug problems with message sending and delivery so you can see if it's this API or the upstream vendor that is causing problems." });

app.MapPost("/message/send", async Task<Results<Ok<SendMessageResponse>, BadRequest<SendMessageResponse>>> ([Microsoft.AspNetCore.Mvc.FromBody] SendMessageRequest message, bool? test, MessagingContext db) =>
{
Expand Down

0 comments on commit 56ff247

Please sign in to comment.