Renames LogsController to LogViewerController to be more explicit only as we have a LogController already for audit logs

This commit is contained in:
Warren
2018-08-29 18:42:12 +01:00
parent fcf8290df9
commit 38e8feb588
2 changed files with 3 additions and 3 deletions

View File

@@ -11,11 +11,11 @@ namespace Umbraco.Web.Editors
/// Backoffice controller supporting the dashboard for viewing logs with some simple graphs & filtering
/// </summary>
[PluginController("UmbracoApi")]
public class LogsController : UmbracoAuthorizedJsonController
public class LogViewerController : UmbracoAuthorizedJsonController
{
private ILogViewer _logViewer;
public LogsController(ILogViewer logViewer)
public LogViewerController(ILogViewer logViewer)
{
_logViewer = logViewer;
}

View File

@@ -113,7 +113,7 @@
<Compile Include="Editors\BackOfficeAssetsController.cs" />
<Compile Include="Editors\BackOfficeModel.cs" />
<Compile Include="Editors\BackOfficeServerVariables.cs" />
<Compile Include="Editors\LogsController.cs" />
<Compile Include="Editors\LogViewerController.cs" />
<Compile Include="Models\ContentEditing\ContentSavedState.cs" />
<Compile Include="Trees\LogsTreeController.cs" />
<Compile Include="Models\Mapping\ContentSavedStateResolver.cs" />