BTCPay Server Extensions (#1925)

* BTCPay Server Extensions

![demo](https://i.imgur.com/2S00aL2.gif)

* cleanup

* fix

* Polish UI a bit,detect when docker deployment
This commit is contained in:
Andrew Camilleri
2020-10-15 14:28:09 +02:00
committed by GitHub
parent 51a072808f
commit 1440e8c55d
45 changed files with 884 additions and 37 deletions

View File

@@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using BTCPayServer.Contracts;
namespace BTCPayServer.Models.NotificationViewModels
{
@@ -11,12 +11,5 @@ namespace BTCPayServer.Models.NotificationViewModels
public List<NotificationViewModel> Items { get; set; }
}
public class NotificationViewModel
{
public string Id { get; set; }
public DateTimeOffset Created { get; set; }
public string Body { get; set; }
public string ActionLink { get; set; }
public bool Seen { get; set; }
}
}