Files
Orchard/src/Orchard.Web/Modules/Orchard.Setup/Services/SetupContext.cs
Suha Can e5c821dab3 Injecting RecipeHarvester impl into the safe mode shell
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
2011-02-12 14:57:11 -08:00

14 lines
545 B
C#

using System.Collections.Generic;
namespace Orchard.Setup.Services {
public class SetupContext {
public string SiteName { get; set; }
public string AdminUsername { get; set; }
public string AdminPassword { get; set; }
public string DatabaseProvider { get; set; }
public string DatabaseConnectionString { get; set; }
public string DatabaseTablePrefix { get; set; }
public IEnumerable<string> EnabledFeatures { get; set; }
public string Recipe { get; set; }
}
}