-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
48 additions
and
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using System.ComponentModel; | ||
using NewLife; | ||
using NewLife.Cube; | ||
|
||
namespace Stardust.Web.Areas.Configs | ||
namespace Stardust.Web.Areas.Configs; | ||
|
||
[DisplayName("配置中心")] | ||
[Menu(666, true, LastUpdate = "20240407")] | ||
public class ConfigsArea : AreaBase | ||
{ | ||
[DisplayName("配置中心")] | ||
public class ConfigsArea : AreaBase | ||
{ | ||
public ConfigsArea() : base(nameof(ConfigsArea).TrimEnd("Area")) { } | ||
public ConfigsArea() : base(nameof(ConfigsArea).TrimEnd("Area")) { } | ||
|
||
static ConfigsArea() => RegisterArea<ConfigsArea>(); | ||
} | ||
static ConfigsArea() => RegisterArea<ConfigsArea>(); | ||
} |
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,15 +1,14 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using System.ComponentModel; | ||
using NewLife; | ||
using NewLife.Cube; | ||
|
||
namespace Stardust.Web.Areas.Deployment | ||
namespace Stardust.Web.Areas.Deployment; | ||
|
||
[DisplayName("发布中心")] | ||
[Menu(555, true, LastUpdate = "20240407")] | ||
public class DeploymentArea : AreaBase | ||
{ | ||
[DisplayName("发布中心")] | ||
public class DeploymentArea : AreaBase | ||
{ | ||
public DeploymentArea() : base(nameof(DeploymentArea).TrimEnd("Area")) { } | ||
public DeploymentArea() : base(nameof(DeploymentArea).TrimEnd("Area")) { } | ||
|
||
static DeploymentArea() => RegisterArea<DeploymentArea>(); | ||
} | ||
static DeploymentArea() => RegisterArea<DeploymentArea>(); | ||
} |
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,15 +1,14 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using System.ComponentModel; | ||
using NewLife; | ||
using NewLife.Cube; | ||
|
||
namespace Stardust.Web.Areas.Monitors | ||
namespace Stardust.Web.Areas.Monitors; | ||
|
||
[DisplayName("监控中心")] | ||
[Menu(444, true, LastUpdate = "20240407")] | ||
public class MonitorsArea : AreaBase | ||
{ | ||
[DisplayName("监控中心")] | ||
public class MonitorsArea : AreaBase | ||
{ | ||
public MonitorsArea() : base(nameof(MonitorsArea).TrimEnd("Area")) { } | ||
public MonitorsArea() : base(nameof(MonitorsArea).TrimEnd("Area")) { } | ||
|
||
static MonitorsArea() => RegisterArea<MonitorsArea>(); | ||
} | ||
static MonitorsArea() => RegisterArea<MonitorsArea>(); | ||
} |
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,16 +1,14 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using System.ComponentModel; | ||
using NewLife; | ||
using NewLife.Cube; | ||
|
||
namespace Stardust.Web.Areas.Nodes | ||
namespace Stardust.Web.Areas.Nodes; | ||
|
||
[DisplayName("节点管理")] | ||
[Menu(888, true, LastUpdate = "20240407")] | ||
public class NodesArea : AreaBase | ||
{ | ||
[DisplayName("节点管理")] | ||
[Menu(888, true)] | ||
public class NodesArea : AreaBase | ||
{ | ||
public NodesArea() : base(nameof(NodesArea).TrimEnd("Area")) { } | ||
public NodesArea() : base(nameof(NodesArea).TrimEnd("Area")) { } | ||
|
||
static NodesArea() => RegisterArea<NodesArea>(); | ||
} | ||
static NodesArea() => RegisterArea<NodesArea>(); | ||
} |
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 |
---|---|---|
@@ -1,15 +1,14 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using System.ComponentModel; | ||
using NewLife; | ||
using NewLife.Cube; | ||
|
||
namespace Stardust.Web.Areas.Redis | ||
namespace Stardust.Web.Areas.Redis; | ||
|
||
[DisplayName("Redis管理")] | ||
[Menu(887, true, LastUpdate = "20240407")] | ||
public class RedisArea : AreaBase | ||
{ | ||
[DisplayName("Redis管理")] | ||
public class RedisArea : AreaBase | ||
{ | ||
public RedisArea() : base(nameof(RedisArea).TrimEnd("Area")) { } | ||
public RedisArea() : base(nameof(RedisArea).TrimEnd("Area")) { } | ||
|
||
static RedisArea() => RegisterArea<RedisArea>(); | ||
} | ||
static RedisArea() => RegisterArea<RedisArea>(); | ||
} |
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