mirror of
https://github.com/bitwarden/server
synced 2025-12-25 04:33:26 +00:00
* Mock out provider models and service * Implement CreateAsync, CompleteSetupAsync, UpdateAsync, InviteUserAsync and ResendInvitesAsync * Implement AcceptUserAsync and ConfirmUsersAsync * Implement SaveUserAsync and DeleteUserAsync * Add email templates * Add admin operations for providers * Fix mail template names * Rename roles * Verify provider has provideradmin * Add self hosted check to admin controller * Resolve review comments * Update sql queries * Change create provider to use email instead of userId
15 lines
384 B
C#
15 lines
384 B
C#
using Bit.Core.Models.Table;
|
|
using Bit.Core.Models.Table.Provider;
|
|
|
|
namespace Bit.Admin.Models
|
|
{
|
|
public class ProvidersModel : PagedModel<Provider>
|
|
{
|
|
public string Name { get; set; }
|
|
public string UserEmail { get; set; }
|
|
public bool? Paid { get; set; }
|
|
public string Action { get; set; }
|
|
public bool SelfHosted { get; set; }
|
|
}
|
|
}
|