This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into show-channel-status-on-overview-page
- Loading branch information
Showing
56 changed files
with
1,124 additions
and
1,289 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
src/Application/Common/Interfaces/BindleService/RevisionSpinToml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
using System.ComponentModel.DataAnnotations; | ||
using System.Runtime.Serialization; | ||
|
||
namespace Hippo.Application.Common.Interfaces.StorageService; | ||
|
||
public class RevisionSpinToml | ||
{ | ||
public RevisionTrigger? Trigger { get; set; } | ||
|
||
public Dictionary<string, Dictionary<string, string>> Config { get; set; } = new(); | ||
|
||
[Required] | ||
public List<RevisionComponent> Component { get; set; } = new(); | ||
[DataMember(Name = "component")] | ||
public List<RevisionComponent> Components { get; set; } = new(); | ||
} |
56 changes: 0 additions & 56 deletions
56
src/Application/EnvironmentVariables/Commands/CreateEnvironmentVariableCommand.cs
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
src/Application/EnvironmentVariables/Commands/CreateEnvironmentVariableCommandValidator.cs
This file was deleted.
Oops, something went wrong.
45 changes: 0 additions & 45 deletions
45
src/Application/EnvironmentVariables/Commands/DeleteEnvironmentVariableCommand.cs
This file was deleted.
Oops, something went wrong.
35 changes: 0 additions & 35 deletions
35
src/Application/EnvironmentVariables/Commands/PurgeEnvironmentVariablesCommand.cs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.