Files
mixtape/zero.Web/Controllers/BackofficeController.cs
T
2020-04-15 14:09:52 +02:00

19 lines
358 B
C#

using Microsoft.AspNetCore.Mvc;
using zero.Core;
using zero.Core.Auth;
namespace zero.Web.Controllers
{
[ZeroAuthorize]
public abstract class BackofficeController : Controller
{
protected IZeroConfiguration Configuration { get; set; }
public BackofficeController(IZeroConfiguration config)
{
Configuration = config;
}
}
}