mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
09dbe44bca
* Onboarding: Invite new users - Separates the user self-registration and invite cases - Adds invitation email for users created by the admin - Adds invitation tokens to verify user was invited - Adds handler action for invite links - Refactors `UserEventHostedService` - Fixes #5726. * Add permissioned form tag helper * Better way of changing a user's role * Test fixes
11 lines
199 B
C#
11 lines
199 B
C#
using System;
|
|
using BTCPayServer.Data;
|
|
|
|
namespace BTCPayServer.Events;
|
|
|
|
public class UserInviteAcceptedEvent
|
|
{
|
|
public ApplicationUser User { get; set; }
|
|
public Uri RequestUri { get; set; }
|
|
}
|