mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05:00

* Update sql files to add Manage permission * Add migration script * Rename collection manage migration file to remove duplicate migration date * Migrations * Add manage to models * Add manage to repository * Add constraint to Manage columns * Migration lint fixes * Add manage to OrganizationUserUserDetails_ReadWithCollectionsById * Add missing manage fields * Add 'Manage' to UserCollectionDetails * Use CREATE OR ALTER where possible
11 lines
230 B
C#
11 lines
230 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Models.Data;
|
|
|
|
public class CollectionDetails : Collection
|
|
{
|
|
public bool ReadOnly { get; set; }
|
|
public bool HidePasswords { get; set; }
|
|
public bool Manage { get; set; }
|
|
}
|