Skip to content

Commit

Permalink
Remove about page
Browse files Browse the repository at this point in the history
  • Loading branch information
cwetanow committed Mar 26, 2017
1 parent 3777a8f commit 87ee0db
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 44 deletions.
29 changes: 0 additions & 29 deletions src/Logs.Web.Tests/Controllers/HomeControllerTests/AboutTests.cs

This file was deleted.

1 change: 0 additions & 1 deletion src/Logs.Web.Tests/Logs.Web.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@
<Compile Include="Controllers\EntriesControllerTests\NewEntryTests.cs" />
<Compile Include="Controllers\ErrorControllerTests\NotFoundTests.cs" />
<Compile Include="Controllers\ErrorControllerTests\ServerErrorTests.cs" />
<Compile Include="Controllers\HomeControllerTests\AboutTests.cs" />
<Compile Include="Controllers\HomeControllerTests\ConstructorTests.cs" />
<Compile Include="Controllers\HomeControllerTests\IndexTests.cs" />
<Compile Include="Infrastructure\Interception\CachingInterceptorTests\ConstructorTests.cs" />
Expand Down
5 changes: 0 additions & 5 deletions src/Logs.Web/Controllers/HomeController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,5 @@ public ActionResult Index()

return View(model);
}

public ActionResult About()
{
return View();
}
}
}
1 change: 0 additions & 1 deletion src/Logs.Web/Logs.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,6 @@
<Content Include="Views\_ViewStart.cshtml" />
<Content Include="Views\Shared\Error.cshtml" />
<Content Include="Views\Shared\_Layout.cshtml" />
<Content Include="Views\Home\About.cshtml" />
<Content Include="Views\Home\Index.cshtml" />
<Content Include="Views\Account\Login.cshtml" />
<Content Include="Views\Account\Register.cshtml" />
Expand Down
7 changes: 0 additions & 7 deletions src/Logs.Web/Views/Home/About.cshtml

This file was deleted.

1 change: 0 additions & 1 deletion src/Logs.Web/Views/Navigation/Navigation.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<ul class="nav navbar-nav">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("Logs", "List", "Logs")</li>
<li>@Html.ActionLink("About", "About", "Home")</li>
@if (Model.IsAdmin)
{
<li>@Html.ActionLink("Administration", "Index", "Administration")</li>
Expand Down

0 comments on commit 87ee0db

Please sign in to comment.