mirror of
https://github.com/bitwarden/server.git
synced 2025-06-16 07:50:49 -05:00

* [EC-19] Move SSO Identifier to Org SSO endpoint (#2184) * [EC-19] Move SSO identifier to Org SSO config endpoint * [EC-19] Add Jira tech debt issue reference * [EC-542] Update email communications (#2348) (cherry picked from commit 7469432c7743e2b2b12229b298233b6ab77f7bc6) Co-authored-by: Jacob Fink <jfink@bitwarden.com> Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com>
10 lines
333 B
C#
10 lines
333 B
C#
namespace Bit.Core.Models.Mail;
|
|
|
|
public class OrganizationUserAcceptedViewModel : BaseMailModel
|
|
{
|
|
public Guid OrganizationId { get; set; }
|
|
public string OrganizationName { get; set; }
|
|
public string UserIdentifier { get; set; }
|
|
public string ConfirmUrl => $"{WebVaultUrl}/organizations/{OrganizationId}/members";
|
|
}
|