@@ -125,7 +125,7 @@ services.AddSwaggerGen(c => {
125125[SwaggerOperation (
126126 Summary = " Creates a new Author" ,
127127 Description = " Creates a new Author" ,
128- OperationId = " Author.Create " ,
128+ OperationId = " Author_Create " ,
129129 Tags = new [] { " AuthorEndpoint" })
130130]
131131public override async Task < ActionResult < CreateAuthorResult >> HandleAsync ([FromBody ]CreateAuthorCommand request )
@@ -159,7 +159,7 @@ public class List : BaseAsyncEndpoint
159159 [SwaggerOperation (
160160 Summary = " List all Authors" ,
161161 Description = " List all Authors" ,
162- OperationId = " Author.List " ,
162+ OperationId = " Author_List " ,
163163 Tags = new [] { " AuthorEndpoint" })
164164 ]
165165 public override async Task <ActionResult <IList <AuthorListResult >>> HandleAsync (
@@ -237,7 +237,7 @@ public class Post : BaseAsyncEndpoint
237237 [SwaggerOperation (
238238 Summary = " Submit a new article" ,
239239 Description = " Enables the submission of new articles" ,
240- OperationId = " B349A6C4-1198-4B53-B9BE-85232E06F16E " ,
240+ OperationId = " Article_Create " ,
241241 Tags = new [] {" Article" })
242242 ]
243243 public override Task <ActionResult > HandleAsync ([FromRoute ] NewArticleRequest request ,
0 commit comments