Skip to content

Commit 6a85f13

Browse files
Fix dns setup (#202)
adding single level domain validation prevented people to set up bring-your-own-domain. Since we're doing this validation api-side now, we can just remove it to be extra safe.
1 parent be513f6 commit 6a85f13

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pkg/manifest/manifest.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,6 @@ func (pMan *ProjectManifest) ConfigureNetwork() error {
148148
return fmt.Errorf("Not an onplural.sh domain")
149149
}
150150

151-
if err := utils.ValidateSingleLevelDeep(res, pluralDomain); err != nil {
152-
return err
153-
}
154-
155151
if pluralDns {
156152
client := api.NewClient()
157153
if err := client.CreateDomain(res); err != nil {

0 commit comments

Comments
 (0)