-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from NerosoftDev/develop
Develop
- Loading branch information
Showing
189 changed files
with
2,891 additions
and
4,439 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace Nerosoft.Starfish.Common; | ||
|
||
public enum PermissionState | ||
{ | ||
None = 0, | ||
Read = 1, | ||
Edit = 2 | ||
} |
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
19 changes: 0 additions & 19 deletions
19
Source/Starfish.Service/Application/Commands/Configs/AppInfoCreateCommand.cs
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
Source/Starfish.Service/Application/Commands/Configs/AppInfoDeleteCommand.cs
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
Source/Starfish.Service/Application/Commands/Configs/AppInfoUpdateCommand.cs
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
Source/Starfish.Service/Application/Commands/Configs/ChangeAppStatusCommand.cs
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
Source/Starfish.Service/Application/Commands/Configs/ConfigurationAbstractCommand.cs
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
Source/Starfish.Service/Application/Commands/Configs/ConfigurationArchiveCreateCommand.cs
This file was deleted.
Oops, something went wrong.
24 changes: 12 additions & 12 deletions
24
Source/Starfish.Service/Application/Commands/Configs/ConfigurationCreateCommand.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,19 +1,19 @@ | ||
namespace Nerosoft.Starfish.Application; | ||
using Nerosoft.Euonia.Domain; | ||
|
||
public class ConfigurationCreateCommand : ConfigurationAbstractCommand | ||
namespace Nerosoft.Starfish.Application; | ||
|
||
public class ConfigurationCreateCommand : Command | ||
{ | ||
public ConfigurationCreateCommand(string appId, string environment) | ||
: base(appId, environment) | ||
public ConfigurationCreateCommand(string teamId) | ||
{ | ||
TeamId = teamId; | ||
} | ||
|
||
/// <summary> | ||
/// 描述 | ||
/// </summary> | ||
|
||
public string TeamId { get; set; } | ||
|
||
public string Name { get; set; } | ||
|
||
public string Description { get; set; } | ||
|
||
/// <summary> | ||
/// 配置项内容 | ||
/// </summary> | ||
public IDictionary<string, string> Data { get; set; } | ||
public string Secret { get; set; } | ||
} |
Oops, something went wrong.