mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-21 11:17:28 +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
14 lines
545 B
C#
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; }
|
|
}
|
|
} |