mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
Dashboard (#3530)
* Add dashboard and chart basics * More widgets * Make widgets responsive * Layout dashboard * Prepare ExplorerClient * Switch to Chartist * Dynamic data for store numbers and recent transactions tiles * Dynamic data for recent invoices tile * Improvements * Plug NBXPlorer DB * Properly filter by code * Reorder cheat mode button * AJAX update for graph data * Fix create invoice button * Retry connection on transient issues * App Top Items stats * Design updates * App Sales stats * Add points for weekly histogram, set last point to current balance Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
using BTCPayServer.Data;
|
||||
|
||||
namespace BTCPayServer.Models.StoreViewModels;
|
||||
|
||||
public class StoreDashboardViewModel
|
||||
@@ -6,4 +9,6 @@ public class StoreDashboardViewModel
|
||||
public string StoreName { get; set; }
|
||||
public bool WalletEnabled { get; set; }
|
||||
public bool LightningEnabled { get; set; }
|
||||
public bool IsSetUp { get; set; }
|
||||
public List<AppData> Apps { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user