Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions CallbackHandler/Endpoints/CallbackEndpoints.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Routing;
using SimpleResults;
using System;
using Shared.Extensions;
using Shared.Middleware;

Expand All @@ -21,7 +19,7 @@ public static IEndpointRouteBuilder MapCallbackEndpoints(this IEndpointRouteBuil
group.MapPost("/", Handlers.CallbackHandlers.RecordCallback)
.WithName("RecordCallback")
.WithSummary("Records a deposit callback")
.WithStandardProduces<CallbackResponse, ErrorResponse>(); ;
.WithStandardProduces<CallbackResponse, ErrorResponse>();

group.MapGet("/{callbackId:guid}", Handlers.CallbackHandlers.GetCallback)
.WithName("GetCallback")
Expand Down
Loading