From 80199b3ba79ee47e87f271fb74627bfd2ecf27ff Mon Sep 17 00:00:00 2001 From: Uncled1023 Date: Mon, 6 Dec 2021 19:09:41 -0800 Subject: [PATCH] Made url shortening API require account. --- Teknik/Areas/API/V1/Controllers/ShortenAPIv1Controller.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Teknik/Areas/API/V1/Controllers/ShortenAPIv1Controller.cs b/Teknik/Areas/API/V1/Controllers/ShortenAPIv1Controller.cs index 6d37172..32f36e6 100644 --- a/Teknik/Areas/API/V1/Controllers/ShortenAPIv1Controller.cs +++ b/Teknik/Areas/API/V1/Controllers/ShortenAPIv1Controller.cs @@ -26,7 +26,6 @@ namespace Teknik.Areas.API.V1.Controllers public ShortenAPIv1Controller(ILogger logger, Config config, TeknikEntities dbContext) : base(logger, config, dbContext) { } [HttpPost] - [AllowAnonymous] [TrackPageView] public IActionResult Shorten(ShortenAPIv1Model model) {