From 261d62c83fef6a7da01638c63feeb1074178dcfb Mon Sep 17 00:00:00 2001 From: Sergey Nazarov Date: Tue, 26 Mar 2024 15:43:26 +0300 Subject: [PATCH] Update api contracts --- .../TextMatches/ITextMatchesController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Nocr.TextMatcher.Api.Contracts/TextMatches/ITextMatchesController.cs b/src/Nocr.TextMatcher.Api.Contracts/TextMatches/ITextMatchesController.cs index 1e83ed2..7038899 100644 --- a/src/Nocr.TextMatcher.Api.Contracts/TextMatches/ITextMatchesController.cs +++ b/src/Nocr.TextMatcher.Api.Contracts/TextMatches/ITextMatchesController.cs @@ -11,7 +11,7 @@ public interface ITextMatchesController Task Create([Body] CreateTextMatchRequest request, CancellationToken cancellationToken = default); [Get(WebRoutes.TextMatches.ById)] - Task GetById([Path] long id, CancellationToken cancellationToken = default); + Task GetById([Path] long id, CancellationToken cancellationToken = default); [Get(WebRoutes.TextMatches.ByUserId)] Task GetByUserId([Path] long userId, CancellationToken cancellationToken = default);