1
0
mirror of https://github.com/bitwarden/server synced 2026-01-01 16:13:33 +00:00

[EC-343] Added column 'UseCustomPermissions' to Organization table

This commit is contained in:
Rui Tome
2022-10-12 17:16:39 +01:00
parent 0ea70f68f1
commit fa549fb72e
12 changed files with 417 additions and 5 deletions

View File

@@ -85,6 +85,7 @@ public class OrganizationRepository : Repository<Core.Entities.Organization, Org
UseKeyConnector = e.UseKeyConnector,
UseResetPassword = e.UseResetPassword,
UseScim = e.UseScim,
UseCustomPermissions = e.UseCustomPermissions
}).ToListAsync();
}
}

View File

@@ -29,6 +29,7 @@ public class ProviderUserOrganizationDetailsViewQuery : IQuery<ProviderUserOrgan
UseApi = x.o.UseApi,
SelfHost = x.o.SelfHost,
UsersGetPremium = x.o.UsersGetPremium,
UseCustomPermissions = x.o.UseCustomPermissions,
Seats = x.o.Seats,
MaxCollections = x.o.MaxCollections,
MaxStorageGb = x.o.MaxStorageGb,