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

Migrate KM code to have #nullable disable (#6023)

This commit is contained in:
Justin Baur
2025-07-03 09:40:55 -04:00
committed by GitHub
parent fafdfd6fbd
commit 3302f05276
2 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,7 @@
using Bit.Core.Auth.Entities; // FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using Bit.Core.Auth.Entities;
using Bit.Core.Auth.Models.Data; using Bit.Core.Auth.Models.Data;
using Bit.Core.Entities; using Bit.Core.Entities;
using Bit.Core.Tools.Entities; using Bit.Core.Tools.Entities;

View File

@ -1,4 +1,7 @@
using Bit.Core.Entities; // FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using Bit.Core.Entities;
using Bit.Core.KeyManagement.Models.Data; using Bit.Core.KeyManagement.Models.Data;
using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity;
using Microsoft.Data.SqlClient; using Microsoft.Data.SqlClient;