Skip to content

Commit

Permalink
Missing description and name in manifests
Browse files Browse the repository at this point in the history
Fixes #3384
  • Loading branch information
agriffard committed Mar 25, 2019
1 parent b3c1163 commit 981f59f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/OrchardCore.Modules/OrchardCore.Features/Manifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

[assembly: Feature(
Id = "OrchardCore.Features",
Name = "Features",
Description = "The Features module enables the administrator of the site to manage the installed modules as well as activate and de-activate features.",
Dependencies = new [] { "OrchardCore.Resources" },
Category = "Infrastructure"
Expand Down
1 change: 1 addition & 0 deletions src/OrchardCore.Modules/OrchardCore.Flows/Manifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

[assembly: Feature(
Id = "OrchardCore.Flows",
Name = "Flows",
Description = "Provides a content part allowing users to edit their content based on Widgets.",
Dependencies = new [] { "OrchardCore.Widgets" },
Category = "Content"
Expand Down
2 changes: 2 additions & 0 deletions src/OrchardCore.Modules/OrchardCore.HomeRoute/Manifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@

[assembly: Feature(
Id = "OrchardCore.HomeRoute",
Name = "Home Route",
Description = "Provides a way to set the route corresponding to the homepage of the site",
Category = "Infrastructure"
)]
1 change: 1 addition & 0 deletions src/OrchardCore.Modules/OrchardCore.Layers/Manifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

[assembly: Feature(
Id = "OrchardCore.Layers",
Name = "Layers",
Description = "Enables users to render Widgets across pages of the site based on conditions.",
Dependencies = new []
{
Expand Down
1 change: 1 addition & 0 deletions src/OrchardCore.Modules/OrchardCore.Widgets/Manifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

[assembly: Feature(
Id = "OrchardCore.Widgets",
Name = "Widgets",
Description = "Provides a part allowing content items to render Widgets in theme zones.",
Dependencies = new [] { "OrchardCore.ContentTypes" },
Category = "Content"
Expand Down

0 comments on commit 981f59f

Please sign in to comment.