We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93e0841 commit afc4313Copy full SHA for afc4313
sa/model.go
@@ -475,15 +475,17 @@ func modelToOrder(om *orderModel) (*corepb.Order, error) {
475
}
476
477
var challTypeToUint = map[string]uint8{
478
- "http-01": 0,
479
- "dns-01": 1,
480
- "tls-alpn-01": 2,
+ "http-01": 0,
+ "dns-01": 1,
+ "tls-alpn-01": 2,
481
+ "dns-account-01": 3,
482
483
484
var uintToChallType = map[uint8]string{
485
0: "http-01",
486
1: "dns-01",
487
2: "tls-alpn-01",
488
+ 3: "dns-account-01",
489
490
491
var identifierTypeToUint = map[string]uint8{
0 commit comments