Skip to content

Commit

Permalink
Merge pull request #8236 from abpframework/enisn/cms-kit/missing-blog…
Browse files Browse the repository at this point in the history
…s-feature

CmsKit - Add missing BlogsFeature property
  • Loading branch information
ilkayilknur committed Mar 29, 2021
2 parents c4f172c + 9af87f3 commit 9fd3053
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class GlobalCmsKitFeatures : GlobalModuleFeatures
public ReactionsFeature Reactions => GetFeature<ReactionsFeature>();

public CommentsFeature Comments => GetFeature<CommentsFeature>();

public MediaFeature Media => GetFeature<MediaFeature>();

public RatingsFeature Ratings => GetFeature<RatingsFeature>();
Expand All @@ -19,6 +19,8 @@ public class GlobalCmsKitFeatures : GlobalModuleFeatures

public PagesFeature Pages => GetFeature<PagesFeature>();

public BlogsFeature Blogs => GetFeature<BlogsFeature>();

public CmsUserFeature User => GetFeature<CmsUserFeature>();

public GlobalCmsKitFeatures([NotNull] GlobalFeatureManager featureManager)
Expand Down

0 comments on commit 9fd3053

Please sign in to comment.