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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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
{

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
{

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
{

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
{

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.ReportFeatures.OrganizationReportMembers.Interfaces;
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
{

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
{

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
{

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
{

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.Repositories;
using Bit.Core.Settings;