Skip to content

Commit

Permalink
Fix for admin page returning 404 #47
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikvig committed Oct 18, 2016
1 parent a3a0994 commit aa65154
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Controllers/GetaTagsAdminController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace Geta.Tags.Controllers
{
[Authorize(Roles = "Administrators, WebAdmins, CmsAdmins")]
[EPiServer.PlugIn.GuiPlugIn(Area = EPiServer.PlugIn.PlugInArea.AdminMenu, Url = "/GetaTagsAdmin/Index", DisplayName = "Geta Tags Management")]
[EPiServer.PlugIn.GuiPlugIn(Area = EPiServer.PlugIn.PlugInArea.AdminMenu, Url = "/GetaTagsAdmin", DisplayName = "Geta Tags Management")]
public class GetaTagsAdminController : Controller
{
public static int PageSize { get; } = 30;
Expand Down
4 changes: 2 additions & 2 deletions src/TagsScheduledJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
using System.Collections.Generic;
using System.Linq;
using EPiServer;
using EPiServer.BaseLibrary.Scheduling;
using EPiServer.Core;
using EPiServer.DataAbstraction;
using EPiServer.PlugIn;
using EPiServer.Scheduler;
using EPiServer.ServiceLocation;
using Geta.Tags.Interfaces;
using Geta.Tags.Models;
Expand All @@ -14,7 +14,7 @@
namespace Geta.Tags
{
[ScheduledPlugIn(DisplayName = "Geta Tags maintenance", DefaultEnabled = true)]
public class TagsScheduledJob : JobBase
public class TagsScheduledJob : ScheduledJobBase
{
private bool _stop;

Expand Down

0 comments on commit aa65154

Please sign in to comment.