mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-18 21:32:27 +01:00
f3d485da53
* Server: Make sending email optional when adding user Closes #6158. * Generate custom invite token and store it in user blob Closes btcpayserver/app/#46. * QR code for user invite Closes #6157. * Text fix
52 lines
1.9 KiB
C#
52 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
// Add profile data for application users by adding properties to the ApplicationUser class
|
|
public class ApplicationUser : IdentityUser, IHasBlob<UserBlob>
|
|
{
|
|
public bool RequiresEmailConfirmation { get; set; }
|
|
public bool RequiresApproval { get; set; }
|
|
public bool Approved { get; set; }
|
|
public List<StoredFile> StoredFiles { get; set; }
|
|
[Obsolete("U2F support has been replace with FIDO2")]
|
|
public List<U2FDevice> U2FDevices { get; set; }
|
|
public List<APIKeyData> APIKeys { get; set; }
|
|
public DateTimeOffset? Created { get; set; }
|
|
public string DisabledNotifications { get; set; }
|
|
|
|
public List<NotificationData> Notifications { get; set; }
|
|
public List<UserStore> UserStores { get; set; }
|
|
public List<Fido2Credential> Fido2Credentials { get; set; }
|
|
|
|
[Obsolete("Use Blob2 instead")]
|
|
public byte[] Blob { get; set; }
|
|
public string Blob2 { get; set; }
|
|
|
|
public List<IdentityUserRole<string>> UserRoles { get; set; }
|
|
|
|
public static void OnModelCreating(ModelBuilder builder, DatabaseFacade databaseFacade)
|
|
{
|
|
builder.Entity<ApplicationUser>()
|
|
.HasMany<IdentityUserRole<string>>(user => user.UserRoles)
|
|
.WithOne().HasForeignKey(role => role.UserId);
|
|
|
|
builder.Entity<ApplicationUser>()
|
|
.Property(o => o.Blob2)
|
|
.HasColumnType("JSONB");
|
|
}
|
|
}
|
|
|
|
public class UserBlob
|
|
{
|
|
public bool ShowInvoiceStatusChangeHint { get; set; }
|
|
public string ImageUrl { get; set; }
|
|
public string Name { get; set; }
|
|
public string InvitationToken { get; set; }
|
|
}
|
|
}
|