Keypad: Show recent transactions only when logged in (#5534)

Fixes #5530. For the use case of giving access to cashiers we need to find another solution than showing the recent transactions for signed out users.
This commit is contained in:
d11n
2023-12-04 14:14:37 +01:00
committed by GitHub
parent a8ebaa6784
commit 7066a2a577
3 changed files with 12 additions and 6 deletions

View File

@@ -523,7 +523,7 @@ namespace BTCPayServer.Plugins.PointOfSale.Controllers
return View("Views/UIForms/View", viewModel);
}
[Authorize(Policy = Policies.CanModifyStoreSettings, AuthenticationSchemes = AuthenticationSchemes.Cookie)]
[Authorize(Policy = Policies.CanViewInvoices, AuthenticationSchemes = AuthenticationSchemes.Cookie)]
[HttpGet("/apps/{appId}/pos/recent-transactions")]
public async Task<IActionResult> RecentTransactions(string appId)
{