From f0167d1ff810e6107720447a412d11d268b4ba41 Mon Sep 17 00:00:00 2001 From: Bardin08 Date: Sat, 11 May 2024 03:14:47 +0300 Subject: [PATCH] Update webhook uri We have to avoid generic endpoint names --- EduAutomation/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EduAutomation/Program.cs b/EduAutomation/Program.cs index 2552970..9439540 100644 --- a/EduAutomation/Program.cs +++ b/EduAutomation/Program.cs @@ -20,6 +20,6 @@ app.UseHttpsRedirection(); -app.MapPost("/api/webhook", GitHubEndpoints.RepositoryCreatedWebhook); +app.MapPost("/api/github-repo-webhook", GitHubEndpoints.RepositoryCreatedWebhook); app.Run();