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:
parent
89434ea16e
commit
ed7670a119
22
Teknik/Areas/Privacy/Controllers/PrivacyController.cs
Normal file
22
Teknik/Areas/Privacy/Controllers/PrivacyController.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user