Skip to content

Commit

Permalink
add certificate state constants
Browse files Browse the repository at this point in the history
  • Loading branch information
AGS4NO committed Jan 18, 2024
1 parent d884921 commit 257c257
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion internal/consts/provider.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
package consts

const (
BaseURLSandbox = "https://api.sandbox.dnsimple.com"
BaseURLSandbox = "https://api.sandbox.dnsimple.com"

// Certificate states
CertificateStateCancelled = "cancelled"
CertificateStateFailed = "failed"
CertificateStateIssued = "issued"
CertificateStateRefunded = "refunded"

// Domain states
DomainStateRegistered = "registered"
DomainStateHosted = "hosted"
DomainStateNew = "new"
Expand Down

0 comments on commit 257c257

Please sign in to comment.