mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
Resolve Vault and DB Warnings (#4646)
* Resolve Vault Warnings * Resolve DB Warnings
This commit is contained in:
parent
acb71d87d9
commit
13ad872f51
@ -1,4 +1,5 @@
|
||||
#nullable enable
|
||||
using System.Diagnostics;
|
||||
using Bit.Core.Context;
|
||||
using Bit.Core.Entities;
|
||||
using Bit.Core.Enums;
|
||||
@ -98,6 +99,12 @@ public class BulkCollectionAuthorizationHandler : BulkAuthorizationHandler<BulkC
|
||||
case not null when requirement == BulkCollectionOperations.Delete:
|
||||
authorized = await CanDeleteAsync(resources, org);
|
||||
break;
|
||||
|
||||
case null:
|
||||
// requirement isn't actually nullable but since we use the
|
||||
// not null when trick it makes the compiler think that requirement
|
||||
// could actually be nullable.
|
||||
throw new UnreachableException();
|
||||
}
|
||||
|
||||
if (authorized)
|
||||
|
@ -1,6 +1,8 @@
|
||||
using Bit.Api.Vault.Models.Response;
|
||||
using Bit.Core.Models.Api;
|
||||
|
||||
#nullable enable
|
||||
|
||||
public class OptionalCipherDetailsResponseModel : ResponseModel
|
||||
{
|
||||
public bool Unavailable { get; set; }
|
||||
|
@ -12,7 +12,9 @@ namespace Bit.SqliteMigrations.Migrations
|
||||
{
|
||||
[DbContext(typeof(DatabaseContext))]
|
||||
[Migration("20221212154007_initial")]
|
||||
#pragma warning disable CS8981 // We unfortunately can't rename migrations
|
||||
partial class initial
|
||||
#pragma warning restore CS8981
|
||||
{
|
||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||
{
|
||||
|
@ -4,7 +4,9 @@
|
||||
|
||||
namespace Bit.SqliteMigrations.Migrations;
|
||||
|
||||
#pragma warning disable CS8981 // We unfortunately can't rename migrations
|
||||
public partial class initial : Migration
|
||||
#pragma warning restore CS8981
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user