From 9500f21bfea806717955ef2c6c56d673174c6912 Mon Sep 17 00:00:00 2001 From: Cy Okeke Date: Wed, 19 Mar 2025 16:19:32 +0100 Subject: [PATCH] Remove the Authorize attribute --- src/Api/Controllers/PhishingDomainsController.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Api/Controllers/PhishingDomainsController.cs b/src/Api/Controllers/PhishingDomainsController.cs index 08a063ad25..b353dd2cbd 100644 --- a/src/Api/Controllers/PhishingDomainsController.cs +++ b/src/Api/Controllers/PhishingDomainsController.cs @@ -1,11 +1,9 @@ using Bit.Core.Repositories; -using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace Bit.Api.Controllers; [Route("phishing-domains")] -[Authorize("PhishingDomains")] public class PhishingDomainsController(IPhishingDomainRepository phishingDomainRepository) : Controller { [HttpGet]