mirror of
https://github.com/bitwarden/server
synced 2026-01-05 18:13:31 +00:00
[AC-1117] Add manage permission (#3126)
* 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
This commit is contained in:
@@ -293,6 +293,9 @@ namespace Bit.PostgresMigrations.Migrations
|
||||
b.Property<bool>("HidePasswords")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("Manage")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("ReadOnly")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
@@ -314,6 +317,9 @@ namespace Bit.PostgresMigrations.Migrations
|
||||
b.Property<bool>("HidePasswords")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("Manage")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("ReadOnly")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user