mirror of
https://github.com/bitwarden/server
synced 2025-12-24 04:03:25 +00:00
fix issues on cipher admin endpoints
This commit is contained in:
@@ -1,13 +1,11 @@
|
||||
using Bit.Core.Models.Table;
|
||||
using System;
|
||||
using System;
|
||||
|
||||
namespace Core.Models.Data
|
||||
{
|
||||
public class CipherDetails : Cipher
|
||||
public class CipherDetails : CipherOrganizationDetails
|
||||
{
|
||||
public Guid? FolderId { get; set; }
|
||||
public bool Favorite { get; set; }
|
||||
public bool Edit { get; set; }
|
||||
public bool OrganizationUseTotp { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
9
src/Core/Models/Data/CipherOrganizationDetails.cs
Normal file
9
src/Core/Models/Data/CipherOrganizationDetails.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using Bit.Core.Models.Table;
|
||||
|
||||
namespace Core.Models.Data
|
||||
{
|
||||
public class CipherOrganizationDetails : Cipher
|
||||
{
|
||||
public bool OrganizationUseTotp { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user