mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Add Seats to Org note (#2086)
This commit is contained in:
parent
81cb41850a
commit
890e6bb48a
@ -93,7 +93,7 @@ namespace Bit.Billing.Controllers
|
|||||||
var orgs = await _organizationRepository.GetManyByUserIdAsync(user.Id);
|
var orgs = await _organizationRepository.GetManyByUserIdAsync(user.Id);
|
||||||
foreach (var org in orgs)
|
foreach (var org in orgs)
|
||||||
{
|
{
|
||||||
note += $"<li>Org, {org.Name}: " +
|
note += $"<li>Org, {org.Name} ({org.Seats.GetValueOrDefault()}): " +
|
||||||
$"{_globalSettings.BaseServiceUri.Admin}/organizations/edit/{org.Id}</li>";
|
$"{_globalSettings.BaseServiceUri.Admin}/organizations/edit/{org.Id}</li>";
|
||||||
var planName = GetAttribute<DisplayAttribute>(org.PlanType).Name.Split(" ").FirstOrDefault();
|
var planName = GetAttribute<DisplayAttribute>(org.PlanType).Name.Split(" ").FirstOrDefault();
|
||||||
if (!string.IsNullOrWhiteSpace(planName))
|
if (!string.IsNullOrWhiteSpace(planName))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user