1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

fix issues on cipher admin endpoints

This commit is contained in:
Kyle Spearrin
2019-05-01 09:38:13 -04:00
parent 044f21df29
commit b4148d3532
8 changed files with 56 additions and 18 deletions

View File

@ -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; }
}
}

View File

@ -0,0 +1,9 @@
using Bit.Core.Models.Table;
namespace Core.Models.Data
{
public class CipherOrganizationDetails : Cipher
{
public bool OrganizationUseTotp { get; set; }
}
}