mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-21 03:14:10 +08:00
Remove unused controller.
--HG-- branch : dev
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
using System.Web.Mvc;
|
||||
using Orchard.Localization;
|
||||
using Orchard.Recipes.Services;
|
||||
|
||||
namespace Orchard.Recipes.Controllers {
|
||||
public class RecipesController : Controller {
|
||||
private readonly IRecipeJournal _recipeJournal;
|
||||
|
||||
public RecipesController(IRecipeJournal recipeJournal) {
|
||||
_recipeJournal = recipeJournal;
|
||||
T = NullLocalizer.Instance;
|
||||
}
|
||||
|
||||
public Localizer T { get; set; }
|
||||
|
||||
public ActionResult RecipeExecutionStatus (string executionId) {
|
||||
var recipeStatus = _recipeJournal.GetRecipeStatus(executionId);
|
||||
var model = recipeStatus;
|
||||
|
||||
return View(model);
|
||||
}
|
||||
}
|
||||
}
|
@@ -51,7 +51,6 @@
|
||||
<Content Include="web.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Controllers\RecipesController.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="RecipeHandlers\CommandRecipeHandler.cs" />
|
||||
<Compile Include="RecipeHandlers\FeatureRecipeHandler.cs" />
|
||||
|
Reference in New Issue
Block a user