diff --git a/Messaging/Program.cs b/Messaging/Program.cs index 772f6b4b..43331f61 100644 --- a/Messaging/Program.cs +++ b/Messaging/Program.cs @@ -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, BadRequest>> ([Microsoft.AspNetCore.Mvc.FromBody] SendMessageRequest message, bool? test, MessagingContext db) => {