Skip to content

Commit

Permalink
feat(webapp): suspend offering dynDNS registration
Browse files Browse the repository at this point in the history
  • Loading branch information
peterthomassen committed Jan 12, 2024
1 parent 82814f8 commit eceb89d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion www/webapp/src/views/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
@change="$router.push({query: {domainType: domainType}})"
>
<v-radio class="pb-2" label="Managed DNS account" value="custom"></v-radio>
<v-radio class="pb-2" label="dynDNS account" value="dynDNS"></v-radio>
<v-radio class="pb-2" disabled="disabled" label="dynDNS account" value="dynDNS"></v-radio>
</v-radio-group>
</div>
<v-text-field
Expand Down
9 changes: 7 additions & 2 deletions www/webapp/src/views/SignUp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,13 @@
persistent-hint
:prepend-icon="mdiDns"
>
<v-radio label="Configure your own domain (Managed DNS or dynDNS)." value="custom" tabindex="2"></v-radio>
<v-radio :label="`Register a new domain under ${LOCAL_PUBLIC_SUFFIXES[0]} (dynDNS).`" value="dynDNS" tabindex="2"></v-radio>
<v-alert type="info">
dynDNS registrations are suspended at this time.
<strong>We do <i>not</i> process requests for exceptions.</strong><br/>
<small>Please do not contact support about this. You will have to register a domain elsewhere.</small>
</v-alert>
<v-radio label="Configure your own domain (Managed DNS)." value="custom" tabindex="2"></v-radio>
<v-radio :label="`Register a new domain under ${LOCAL_PUBLIC_SUFFIXES[0]} (dynDNS).`" disabled="disabled" value="dynDNS" tabindex="2"></v-radio>
<v-radio label="No, I'll add one later." value="none" tabindex="2"></v-radio>
</v-radio-group>

Expand Down

0 comments on commit eceb89d

Please sign in to comment.