1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 12:43:14 +00:00

[PM-15128] Add Promote Provider Service User functionality to Bitwarden Portal (#5118)

* Add Promote Provider Service User feature to Admin Portal

* Rename feature flag key for Promote Provider Service User tool
This commit is contained in:
Rui Tomé
2024-12-11 11:09:12 +00:00
committed by GitHub
parent 674e522843
commit 9b478107b6
7 changed files with 98 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
using System.ComponentModel.DataAnnotations;
namespace Bit.Admin.Models;
public class PromoteProviderServiceUserModel
{
[Required]
[Display(Name = "Provider Service User Id")]
public Guid? UserId { get; set; }
[Required]
[Display(Name = "Provider Id")]
public Guid? ProviderId { get; set; }
}