mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00

* Init ClientSecret migration * Fix unit tests * Move to src/Sql/dbo_future * Formatting changes * Update migration date for next release * Swap to just executing sp_refreshview * Fix formatting * Add EF Migrations * Rename to ClientSecretHash * Fix unit test * EF column rename * Batch the migration * Fix formatting * Add deprecation notice to property * Move data migration * Swap to CREATE OR ALTER
32 lines
978 B
C#
32 lines
978 B
C#
#nullable enable
|
|
using Bit.Core.Models.Api;
|
|
using Bit.Core.SecretsManager.Models.Data;
|
|
|
|
namespace Bit.Api.SecretsManager.Models.Response;
|
|
|
|
public class AccessTokenCreationResponseModel : ResponseModel
|
|
{
|
|
private const string _objectName = "accessTokenCreation";
|
|
|
|
public AccessTokenCreationResponseModel(ApiKeyClientSecretDetails details) : base(_objectName)
|
|
{
|
|
Id = details.ApiKey.Id;
|
|
Name = details.ApiKey.Name;
|
|
ExpireAt = details.ApiKey.ExpireAt;
|
|
CreationDate = details.ApiKey.CreationDate;
|
|
RevisionDate = details.ApiKey.RevisionDate;
|
|
ClientSecret = details.ClientSecret;
|
|
}
|
|
|
|
public AccessTokenCreationResponseModel() : base(_objectName)
|
|
{
|
|
}
|
|
|
|
public Guid Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? ClientSecret { get; set; }
|
|
public DateTime? ExpireAt { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
public DateTime RevisionDate { get; set; }
|
|
}
|