mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-21 03:14:10 +08:00

Setup to call the harvester for the recipes list SetupContext now contains the recipe for the site, which will be executed Updated minimal,blog and cms recipe files Added recipe description to the setup view model to keep it between posts in case of errors --HG-- branch : recipe
11 lines
324 B
C#
11 lines
324 B
C#
using System.Collections.Generic;
|
|
using Orchard.Environment.Configuration;
|
|
using Orchard.Recipes.Models;
|
|
|
|
namespace Orchard.Setup.Services {
|
|
public interface ISetupService : IDependency {
|
|
ShellSettings Prime();
|
|
IEnumerable<Recipe> Recipes();
|
|
void Setup(SetupContext context);
|
|
}
|
|
} |