1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 20:53:16 +00:00

tool to promote admin user to org owner

This commit is contained in:
Kyle Spearrin
2020-02-14 20:13:25 -05:00
parent 57b246df20
commit e69fc3620e
4 changed files with 83 additions and 1 deletions

View File

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