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

Removed billing index page

This commit is contained in:
Uncled1023 2021-12-08 22:26:23 -08:00
parent 0521c99c2e
commit 5a240c74cc
2 changed files with 0 additions and 17 deletions

View File

@ -220,17 +220,6 @@
"action": "Index"
}
},
{
"Name": "Billing.Index",
"HostTypes": [ "Full" ],
"SubDomains": [ "billing" ],
"Pattern": "",
"Area": "Billing",
"Defaults": {
"controller": "Billing",
"action": "Index"
}
},
{
"Name": "Billing.Subscriptions",
"HostTypes": [ "Full" ],

View File

@ -26,12 +26,6 @@ namespace Teknik.Areas.Billing.Controllers
{
public BillingController(ILogger<Logger> logger, Config config, TeknikEntities dbContext) : base(logger, config, dbContext) { }
[AllowAnonymous]
public IActionResult Index()
{
return View(new BillingViewModel() { StripePublishKey = _config.BillingConfig.StripePublishApiKey });
}
[AllowAnonymous]
[TrackPageView]
public IActionResult ViewSubscriptions()