1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 23:52:50 -05:00

[SM-396] Self-enroll Secrets Manager (#2671)

* Add endpoint for self enrolling in secrets manager

* Add SecretsManager attribute

* Mark endpoint as only cloud, enable secrets manager for the current user

* Remove response
This commit is contained in:
Oscar Hinton
2023-02-21 18:24:49 +01:00
committed by GitHub
parent 16bdd67cad
commit 146d5b1984
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,6 @@
namespace Bit.Api.Models.Request.Organizations;
public class OrganizationEnrollSecretsManagerRequestModel
{
public bool Enabled { get; set; }
}