1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-14 06:07:36 -05:00

Add #nullable disable to DIRT code (#6059)

This commit is contained in:
Justin Baur
2025-07-08 11:48:02 -04:00
committed by GitHub
parent 85b2a5bd94
commit 37cdefbf89
10 changed files with 40 additions and 10 deletions

View File

@ -1,4 +1,7 @@
namespace Bit.Core.Dirt.Models.Data; // FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Dirt.Models.Data;
public class MemberAccessDetails public class MemberAccessDetails
{ {

View File

@ -1,4 +1,7 @@
namespace Bit.Core.Dirt.Reports.Models.Data; // FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Dirt.Reports.Models.Data;
public class MemberAccessReportDetail public class MemberAccessReportDetail
{ {

View File

@ -1,4 +1,7 @@
namespace Bit.Core.Dirt.Reports.Models.Data; // FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Dirt.Reports.Models.Data;
public class OrganizationMemberBaseDetail public class OrganizationMemberBaseDetail
{ {

View File

@ -1,4 +1,7 @@
namespace Bit.Core.Dirt.Reports.Models.Data; // FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Dirt.Reports.Models.Data;
public class RiskInsightsReportDetail public class RiskInsightsReportDetail
{ {

View File

@ -1,4 +1,7 @@
using Bit.Core.Auth.UserFeatures.TwoFactorAuth.Interfaces; // FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using Bit.Core.Auth.UserFeatures.TwoFactorAuth.Interfaces;
using Bit.Core.Dirt.Reports.Models.Data; using Bit.Core.Dirt.Reports.Models.Data;
using Bit.Core.Dirt.Reports.ReportFeatures.OrganizationReportMembers.Interfaces; using Bit.Core.Dirt.Reports.ReportFeatures.OrganizationReportMembers.Interfaces;
using Bit.Core.Dirt.Reports.ReportFeatures.Requests; using Bit.Core.Dirt.Reports.ReportFeatures.Requests;

View File

@ -1,4 +1,7 @@
namespace Bit.Core.Dirt.Reports.ReportFeatures.Requests; // FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Dirt.Reports.ReportFeatures.Requests;
public class AddOrganizationReportRequest public class AddOrganizationReportRequest
{ {

View File

@ -1,4 +1,7 @@
namespace Bit.Core.Dirt.Reports.ReportFeatures.Requests; // FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Dirt.Reports.ReportFeatures.Requests;
public class AddPasswordHealthReportApplicationRequest public class AddPasswordHealthReportApplicationRequest
{ {

View File

@ -1,4 +1,7 @@
namespace Bit.Core.Dirt.Reports.ReportFeatures.Requests; // FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Dirt.Reports.ReportFeatures.Requests;
public class DropOrganizationReportRequest public class DropOrganizationReportRequest
{ {

View File

@ -1,4 +1,7 @@
namespace Bit.Core.Dirt.Reports.ReportFeatures.Requests; // FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Dirt.Reports.ReportFeatures.Requests;
public class DropPasswordHealthReportApplicationRequest public class DropPasswordHealthReportApplicationRequest
{ {

View File

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