1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-09 23:28:12 -05:00
bitwarden/src/Core/Models/Mail/OrganizationServiceAccountsMaxReachedViewModel.cs
Álison Fernandes 35111382e5
[AC-1486] Feature: SM Billing ()
* [AC-1423] Add AddonProduct and BitwardenProduct properties to BillingSubscriptionItem ()

* [AC-1423] Add AddonProduct and BitwardenProduct properties to BillingSubscriptionItem

* [AC-1423] Add helper to StaticStore.cs to find a Plan by StripePlanId

* [AC-1423] Use the helper method to set SubscriptionInfo.BitwardenProduct

* Add SecretsManagerBilling feature flag to Constants

* [AC 1409] Secrets Manager Subscription Stripe Integration  ()

* [AC-1418] Add missing SecretsManagerPlan property to OrganizationResponseModel ()

* [AC 1460] Update Stripe Configuration ()

* [AC 1410] Secrets Manager subscription adjustment back-end changes ()

* Create UpgradeSecretsManagerSubscription command

* [AC-1495] Extract UpgradePlanAsync into a command ()

* This is a pure lift & shift with no refactors

* [AC-1503] Fix Stripe integration on organization upgrade ()

* Fix SM parameters not being passed to Stripe

* [AC-1504] Allow SM max autoscale limits to be disabled ()

* [AC-1488] Changed SM Signup and Upgrade paths to set SmServiceAccounts to include the plan BaseServiceAccount ()

* [AC-1510] Enable access to Secrets Manager to Organization owner for new Subscription ()

* Revert changes to ReferenceEvent code ()

This will be done in AC-1481

* Add UsePasswordManager to sync data ()

* [AC-1522] Fix service account check on upgrading ()

* [AC-1521] Address checkmarx security feedback ()

* Reinstate target attribute but add noopener noreferrer

* Update date on migration script

---------

Co-authored-by: Shane Melton <smelton@bitwarden.com>
Co-authored-by: Thomas Rittson <trittson@bitwarden.com>
Co-authored-by: cyprain-okeke <108260115+cyprain-okeke@users.noreply.github.com>
Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com>
Co-authored-by: cyprain-okeke <cokeke@bitwarden.com>
Co-authored-by: Rui Tomé <108268980+r-tome@users.noreply.github.com>
Co-authored-by: Conner Turnbull <cturnbull@bitwarden.com>
Co-authored-by: Rui Tome <rtome@bitwarden.com>
2023-07-25 08:05:05 +10:00

8 lines
198 B
C#

namespace Bit.Core.Models.Mail;
public class OrganizationServiceAccountsMaxReachedViewModel
{
public Guid OrganizationId { get; set; }
public int MaxServiceAccountsCount { get; set; }
}