mirror of https://github.com/abpframework/abp.git
9 changed files with 78 additions and 25 deletions
@ -0,0 +1,15 @@ |
|||||
|
using JetBrains.Annotations; |
||||
|
using Volo.Abp.GlobalFeatures; |
||||
|
|
||||
|
namespace Volo.CmsKit.GlobalFeatures |
||||
|
{ |
||||
|
[GlobalFeatureName(Name)] |
||||
|
public class CmsUserFeature : GlobalFeature |
||||
|
{ |
||||
|
public const string Name = "CmsKit.User"; |
||||
|
|
||||
|
internal CmsUserFeature([NotNull] GlobalModuleFeatures module) : base(module) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
@ -1,17 +0,0 @@ |
|||||
using JetBrains.Annotations; |
|
||||
using Volo.Abp.GlobalFeatures; |
|
||||
|
|
||||
namespace Volo.CmsKit.GlobalFeatures |
|
||||
{ |
|
||||
[GlobalFeatureName(Name)] |
|
||||
public class ContentsFeature : GlobalFeature |
|
||||
{ |
|
||||
public const string Name = "CmsKit.Contents"; |
|
||||
|
|
||||
internal ContentsFeature( |
|
||||
[NotNull] GlobalCmsKitFeatures cmsKit |
|
||||
) : base(cmsKit) |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
Loading…
Reference in new issue