14 lines
362 B
C#
14 lines
362 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Nop.Web.Framework.Controllers;
|
|
|
|
namespace Nop.Plugin.Widgets.AgeVerification.Controllers
|
|
{
|
|
public class AgeVerificationController : BasePluginController
|
|
{
|
|
public IActionResult Popup()
|
|
{
|
|
return View("~/Plugins/Misc.AgeVerification/Views/AgeVerificationPopup.cshtml");
|
|
}
|
|
}
|
|
}
|