mirror of
https://github.com/bitwarden/server
synced 2025-12-25 12:43:14 +00:00
* WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * Add `Notes` column to `OrganizationSponsorships` table * Add feature flag to `CreateAdminInitiatedSponsorshipHandler` * Unit tests for `CreateSponsorshipHandler` * More tests for `CreateSponsorshipHandler` * Forgot to add `Notes` column to `OrganizationSponsorships` table in the migration script * `CreateAdminInitiatedSponsorshipHandler` unit tests * Fix `CreateSponsorshipCommandTests` * Encrypt the notes field * Wrong business logic checking for invalid permissions. * Wrong business logic checking for invalid permissions. * Remove design patterns * duplicate definition in Constants.cs * Allow rollback * Fix stored procedures & type * Fix stored procedures & type * Properly encapsulating this PR behind its feature flag * Removed comments * Updated ValidateSponsorshipCommand to validate admin initiated requirements --------- Co-authored-by: Conner Turnbull <133619638+cturnbull-bitwarden@users.noreply.github.com> Co-authored-by: Conner Turnbull <cturnbull@bitwarden.com>
31 lines
912 B
C#
31 lines
912 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Utilities;
|
|
|
|
#nullable enable
|
|
|
|
namespace Bit.Core.Entities;
|
|
|
|
public class OrganizationSponsorship : ITableObject<Guid>
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid? SponsoringOrganizationId { get; set; }
|
|
public Guid SponsoringOrganizationUserId { get; set; }
|
|
public Guid? SponsoredOrganizationId { get; set; }
|
|
[MaxLength(256)]
|
|
public string? FriendlyName { get; set; }
|
|
[MaxLength(256)]
|
|
public string? OfferedToEmail { get; set; }
|
|
public PlanSponsorshipType? PlanSponsorshipType { get; set; }
|
|
public DateTime? LastSyncDate { get; set; }
|
|
public DateTime? ValidUntil { get; set; }
|
|
public bool ToDelete { get; set; }
|
|
public bool IsAdminInitiated { get; set; }
|
|
public string? Notes { get; set; }
|
|
|
|
public void SetNewId()
|
|
{
|
|
Id = CoreHelpers.GenerateComb();
|
|
}
|
|
}
|