Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Seq.Api/Model/Backups/BackupEntity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Seq.Api.Model.Backups
{
/// <summary>
/// Seq backups include metadata like users, signals, API keys and other configuration, but do not include
/// the event stream. Backups are fully encrypted with AES-256 and cannot be restored without the master key
/// the event stream. Backups are fully encrypted with AES-256 and cannot be restored without the secret key
/// from the originating Seq instance.
/// </summary>
public class BackupEntity : Entity
Expand Down
12 changes: 6 additions & 6 deletions src/Seq.Api/Model/Settings/SettingName.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,6 @@ public enum SettingName
/// </summary>
IsAuthenticationEnabled,

/// <summary>
/// Tracks whether an admin user has dismissed the master key backup warning.
/// </summary>
MasterKeyIsBackedUp,

/// <summary>
/// The minimum storage space, in bytes, on the disk containing log events, before
/// Seq will stop accepting new events.
Expand Down Expand Up @@ -186,7 +181,12 @@ public enum SettingName
/// The maximum size, in HTTP request content bytes, beyond which ingestion requests will be rejected.
/// </summary>
RawPayloadMaximumContentLength,


/// <summary>
/// Tracks whether an admin user has dismissed the secret key backup warning.
/// </summary>
SecretKeyIsBackedUp,

/// <summary>
/// A snippet of CSS that will be included in the front-end's user interface styles.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Seq.Api/ResourceGroups/BackupsResourceGroup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace Seq.Api.ResourceGroups
{
/// <summary>
/// Perform operations on backups. Seq backups include metadata like users, signals, API keys and other configuration, but do not include
/// the event stream. Backups are fully encrypted with AES-256 and cannot be restored without the master key from the originating Seq instance.
/// the event stream. Backups are fully encrypted with AES-256 and cannot be restored without the secret key from the originating Seq instance.
/// </summary>
public class BackupsResourceGroup : ApiResourceGroup
{
Expand Down
2 changes: 1 addition & 1 deletion src/Seq.Api/Seq.Api.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Client library for the Seq HTTP API.</Description>
<VersionPrefix>2020.5.1</VersionPrefix>
<VersionPrefix>2021.1.0</VersionPrefix>
<Authors>Datalust;Contributors</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down