1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00

Added missing privacy controller

This commit is contained in:
Uncled1023 2015-11-24 12:47:14 -08:00
parent 89434ea16e
commit ed7670a119

View File

@ -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();
}
}
}