1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Remove the Authorize attribute

This commit is contained in:
Cy Okeke 2025-03-19 16:19:32 +01:00
parent c423189ae3
commit 9500f21bfe
No known key found for this signature in database
GPG Key ID: 88B341B55C84B45C

View File

@ -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]