From 624c971e50744712e66f426e9e5ca26c2a3d549d Mon Sep 17 00:00:00 2001 From: enisn Date: Tue, 12 Jan 2021 11:37:31 +0300 Subject: [PATCH] CmsKit - Add BlogsFeature as global feature --- .../Volo/CmsKit/GlobalFeatures/BlogsFeature.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo/CmsKit/GlobalFeatures/BlogsFeature.cs diff --git a/modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo/CmsKit/GlobalFeatures/BlogsFeature.cs b/modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo/CmsKit/GlobalFeatures/BlogsFeature.cs new file mode 100644 index 0000000000..1b094ecf2d --- /dev/null +++ b/modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo/CmsKit/GlobalFeatures/BlogsFeature.cs @@ -0,0 +1,17 @@ +using JetBrains.Annotations; +using Volo.Abp.GlobalFeatures; + +namespace Volo.CmsKit.GlobalFeatures +{ + [GlobalFeatureName(Name)] + public class BlogsFeature : GlobalFeature + { + public const string Name = "CmsKit.Blogs"; + + internal BlogsFeature( + [NotNull] GlobalCmsKitFeatures cmsKit + ) : base(cmsKit) + { + } + } +}