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

fix : dotnet format

This commit is contained in:
Ike Kottlowski 2025-03-20 18:36:33 -04:00
parent 474b37d10e
commit c1614bf3a6
No known key found for this signature in database
GPG Key ID: C86308E3DCA6D76F
3 changed files with 4 additions and 3 deletions

View File

@ -210,7 +210,8 @@ public class AccountsController : Controller
}
Guid? opaqueSessionId = null;
if(_featureService.IsEnabled(FeatureFlagKeys.OpaqueKeyExchange)){
if (_featureService.IsEnabled(FeatureFlagKeys.OpaqueKeyExchange))
{
if (model.OpaqueSessionId != null)
{
opaqueSessionId = Guid.Parse(model.OpaqueSessionId);

View File

@ -1,4 +1,4 @@
using Bit.Core;
using Bit.Core;
using Bit.Core.Auth.Models.Api.Request.Opaque;
using Bit.Core.Auth.Models.Api.Response.Opaque;
using Bit.Core.Auth.Services;

View File

@ -1,4 +1,4 @@
using Bit.Api.Auth.Models.Request.Opaque;
using Bit.Api.Auth.Models.Request.Opaque;
using Bit.Api.Auth.Models.Response.Opaque;
using Bit.Core;
using Bit.Core.Auth.Models.Api.Request.Opaque;