Refactor plugin apps (#4780)

* Refactor plugins

* Add missing names to view models

* Cleanups

* Replace SalesAppBaseType by two interfaces

---------

Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
This commit is contained in:
Nicolas Dorier
2023-03-20 10:39:26 +09:00
committed by GitHub
parent 53f3758abc
commit 04ba1430ca
28 changed files with 163 additions and 160 deletions

View File

@@ -42,6 +42,8 @@ namespace BTCPayServer.Controllers
return View(vm);
var userId = GetUserId();
if (userId is null)
return NotFound();
var apps = await _appService.GetAllApps(userId, false, store.Id);
foreach (var app in apps)
{