mirror of
https://github.com/bitwarden/server.git
synced 2025-04-25 23:02:17 -05:00

* Organization integration creation, update, and deletion database logic * Additional procs and entity tweaks * Use check * Couple newlines * Forgot to script the two org procs
20 lines
640 B
C#
20 lines
640 B
C#
using Bit.Core.Entities;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Utilities;
|
|
|
|
#nullable enable
|
|
|
|
namespace Bit.Core.AdminConsole.Entities;
|
|
|
|
public class OrganizationIntegrationConfiguration : ITableObject<Guid>
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid OrganizationIntegrationId { get; set; }
|
|
public EventType EventType { get; set; }
|
|
public string? Configuration { get; set; }
|
|
public string? Template { get; set; }
|
|
public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
|
|
public DateTime RevisionDate { get; set; } = DateTime.UtcNow;
|
|
public void SetNewId() => Id = CoreHelpers.GenerateComb();
|
|
}
|