Part 1: OpenIddict - Minor Changes & Config prep (#566)

* Part 1: OpenIddict - Minor Changes & Config prep

* add missing nuget

* pr changes

* pr fixes

* remove config for openid -- no need for it for now

* remove unused extension

* Add tests

* use pay tester http client

* check redirecturl in tests
This commit is contained in:
Andrew Camilleri
2019-05-14 15:46:43 +00:00
committed by Nicolas Dorier
parent e22b7f74c7
commit cf436e11ae
11 changed files with 136 additions and 53 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.ComponentModel.DataAnnotations;
namespace BTCPayServer.Models
{
@@ -7,5 +8,11 @@ namespace BTCPayServer.Models
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
[Display(Name = "Error")]
public string Error { get; set; }
[Display(Name = "Description")]
public string ErrorDescription { get; set; }
}
}
}