1 changed files with 22 additions and 0 deletions
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
using System; |
||||
using System.Collections.Generic; |
||||
using System.Linq; |
||||
using System.Web; |
||||
using System.Web.Mvc; |
||||
using Teknik.Controllers; |
||||
|
||||
namespace Teknik.Areas.Privacy.Controllers |
||||
{ |
||||
public class PrivacyController : DefaultController |
||||
{ |
||||
// GET: Privacy/Privacy
|
||||
[AllowAnonymous] |
||||
public ActionResult Index() |
||||
{ |
||||
ViewBag.Title = Config.Title + " - Privacy"; |
||||
ViewBag.Message = "Teknik privacy policy."; |
||||
|
||||
return View(); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue