diff --git a/Teknik/Areas/Shortener/Controllers/ShortenerController.cs b/Teknik/Areas/Shortener/Controllers/ShortenerController.cs
index 26c19f9..096aa26 100644
--- a/Teknik/Areas/Shortener/Controllers/ShortenerController.cs
+++ b/Teknik/Areas/Shortener/Controllers/ShortenerController.cs
@@ -24,7 +24,6 @@ namespace Teknik.Areas.Shortener.Controllers
{
public ShortenerController(ILogger logger, Config config, TeknikEntities dbContext) : base(logger, config, dbContext) { }
- [AllowAnonymous]
[TrackPageView]
public IActionResult Index()
{
@@ -49,7 +48,6 @@ namespace Teknik.Areas.Shortener.Controllers
}
[HttpPost]
- [AllowAnonymous]
public IActionResult ShortenUrl(string url)
{
if (url.IsValidUrl())