Fix R53_ALIAS not being registered as custom type (#310) (#311)

Apparently I've forgot to register the R53_ALIAS custom record
type, thus preventing to use R53_ALIAS in a js file.
The integration still worked fine because they probably don't run
the validation.
This commit is contained in:
Brice Figureau 2018-02-01 13:39:11 +01:00 committed by Tom Limoncelli
parent d5adb3faf6
commit 4c80526860

View file

@ -70,6 +70,7 @@ var features = providers.DocumentationNotes{
func init() {
providers.RegisterDomainServiceProviderType("ROUTE53", newRoute53Dsp, features)
providers.RegisterRegistrarType("ROUTE53", newRoute53Reg)
providers.RegisterCustomRecordType("R53_ALIAS", "ROUTE53", "")
}
func sPtr(s string) *string {