1
0
mirror of https://github.com/bitwarden/server synced 2026-01-08 03:23:20 +00:00

[PM-5800] Remove feature flag checks for PasswordlessLogin (#3713)

* Removed feature flag checks for PasswordlessLogin

* Removed unused reference.
This commit is contained in:
Todd Martin
2024-02-13 11:15:24 -05:00
committed by GitHub
parent 789e266791
commit 1a3146f776
3 changed files with 0 additions and 10 deletions

View File

@@ -13,7 +13,6 @@ using Bit.Core.Auth.UserFeatures.WebAuthnLogin;
using Bit.Core.Exceptions;
using Bit.Core.Services;
using Bit.Core.Tokens;
using Bit.Core.Utilities;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
@@ -21,7 +20,6 @@ namespace Bit.Api.Auth.Controllers;
[Route("webauthn")]
[Authorize("Web")]
[RequireFeature(FeatureFlagKeys.PasswordlessLogin)]
public class WebAuthnController : Controller
{
private readonly IUserService _userService;