Browse Source
Merge pull request #8236 from abpframework/enisn/cms-kit/missing-blogs-feature
CmsKit - Add missing BlogsFeature property
pull/8249/head
İlkay İlknur
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo/CmsKit/GlobalFeatures/GlobalCmsKitFeatures.cs
|
|
|
@ -10,7 +10,7 @@ namespace Volo.CmsKit.GlobalFeatures |
|
|
|
public ReactionsFeature Reactions => GetFeature<ReactionsFeature>(); |
|
|
|
|
|
|
|
public CommentsFeature Comments => GetFeature<CommentsFeature>(); |
|
|
|
|
|
|
|
|
|
|
|
public MediaFeature Media => GetFeature<MediaFeature>(); |
|
|
|
|
|
|
|
public RatingsFeature Ratings => GetFeature<RatingsFeature>(); |
|
|
|
@ -19,6 +19,8 @@ namespace Volo.CmsKit.GlobalFeatures |
|
|
|
|
|
|
|
public PagesFeature Pages => GetFeature<PagesFeature>(); |
|
|
|
|
|
|
|
public BlogsFeature Blogs => GetFeature<BlogsFeature>(); |
|
|
|
|
|
|
|
public CmsUserFeature User => GetFeature<CmsUserFeature>(); |
|
|
|
|
|
|
|
public GlobalCmsKitFeatures([NotNull] GlobalFeatureManager featureManager) |
|
|
|
|