init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
29
KretaWeb/Controllers/HibaOldalController.cs
Normal file
29
KretaWeb/Controllers/HibaOldalController.cs
Normal file
|
@ -0,0 +1,29 @@
|
|||
using System.Web.Mvc;
|
||||
using Kreta.Resources;
|
||||
|
||||
namespace Kreta.Web.Controllers
|
||||
{
|
||||
[AllowAnonymous]
|
||||
public class HibaOldalController : Controller
|
||||
{
|
||||
public ActionResult Index()
|
||||
{
|
||||
string mainVersion = Core.KretaVersion.Instance.MainVersion;
|
||||
string assemblyCreationDate = Core.KretaVersion.Instance.AssemblyCreationDateTime.ToShortDateString();
|
||||
string commitNumber = Core.KretaVersion.Instance.CommitNumber;
|
||||
|
||||
ViewBag.Version = $"{CommonResource.Version}: {mainVersion} ({assemblyCreationDate}) <br/> {commitNumber}";
|
||||
return View();
|
||||
}
|
||||
|
||||
public ActionResult IndexLEPNincsJog()
|
||||
{
|
||||
string mainVersion = Core.KretaVersion.Instance.MainVersion;
|
||||
string assemblyCreationDate = Core.KretaVersion.Instance.AssemblyCreationDateTime.ToShortDateString();
|
||||
string commitNumber = Core.KretaVersion.Instance.CommitNumber;
|
||||
|
||||
ViewBag.Version = $"{CommonResource.Version}: {mainVersion} ({assemblyCreationDate}) <br/> {commitNumber}";
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue