mirror of
https://github.com/internetee/registry.git
synced 2025-08-04 17:01:44 +02:00
parent 64e3bc885a2cb8b46a1aaa4bf4f121ee7f5d44a6
author Karl Erik Õunapuu <karlerik@kreative.ee> 1591359032 +0300 committer Alex Sherman <yul.golem@gmail.com> 1617029320 +0500 CsyncJob: Don't respect IPv6 if nessecary
This commit is contained in:
parent
e46fdd57af
commit
88e1bc3727
33 changed files with 1475 additions and 119 deletions
|
@ -1,18 +0,0 @@
|
|||
.panel.panel-default
|
||||
.panel-heading.clearfix
|
||||
= t(:dnskeys)
|
||||
.table-responsive
|
||||
%table.table.table-hover.table-bordered.table-condensed
|
||||
%thead
|
||||
%tr
|
||||
%th{class: 'col-xs-1'}= t(:flag)
|
||||
%th{class: 'col-xs-1'}= t(:protocol)
|
||||
%th{class: 'col-xs-1'}= t(:algorithm)
|
||||
%th{class: 'col-xs-9'}= t(:public_key)
|
||||
%tbody
|
||||
- @domain.dnskeys.each do |x|
|
||||
%tr
|
||||
%td= x.flags
|
||||
%td= x.protocol
|
||||
%td= x.alg
|
||||
%td= x.public_key
|
|
@ -1,14 +0,0 @@
|
|||
.panel.panel-default
|
||||
.panel-heading.clearfix
|
||||
= t(:legal_documents)
|
||||
.table-responsive
|
||||
%table.table.table-hover.table-bordered.table-condensed
|
||||
%thead
|
||||
%tr
|
||||
%th{class: 'col-xs-8'}= t(:created_at)
|
||||
%th{class: 'col-xs-4'}= t(:type)
|
||||
%tbody
|
||||
- legal_documents.each do |x|
|
||||
%tr
|
||||
%td= link_to(x.created_at, [:admin, x])
|
||||
%td= x.document_type
|
|
@ -1,16 +0,0 @@
|
|||
.panel.panel-default
|
||||
.panel-heading.clearfix
|
||||
= t(:nameservers)
|
||||
.table-responsive
|
||||
%table.table.table-hover.table-bordered.table-condensed
|
||||
%thead
|
||||
%tr
|
||||
%th{class: 'col-xs-4'}= t(:hostname)
|
||||
%th{class: 'col-xs-4'}= t(:ipv4)
|
||||
%th{class: 'col-xs-4'}= t(:ipv6)
|
||||
%tbody
|
||||
- @domain.nameservers.each do |x|
|
||||
%tr
|
||||
%td= x
|
||||
%td= x.ipv4
|
||||
%td= x.ipv6
|
|
@ -1,18 +0,0 @@
|
|||
#domain_statuses.panel.panel-default
|
||||
.panel-heading.clearfix
|
||||
= t(:statuses)
|
||||
.table-responsive
|
||||
%table.table.table-hover.table-bordered.table-condensed
|
||||
%thead
|
||||
%tr
|
||||
%th{class: 'col-xs-6'}= t(:status)
|
||||
%th{class: 'col-xs-6'}= t(:notes)
|
||||
%tbody
|
||||
- @domain.statuses.each do |status|
|
||||
%tr
|
||||
%td
|
||||
- if @domain.pending_json.present? && [DomainStatus::PENDING_UPDATE, DomainStatus::PENDING_DELETE].include?(status)
|
||||
= link_to status, admin_domain_domain_versions_path(@domain.id)
|
||||
- else
|
||||
= status
|
||||
%td= @domain.status_notes[status]
|
14
app/views/mailers/csync_mailer/dnssec_deleted.html.erb
Normal file
14
app/views/mailers/csync_mailer/dnssec_deleted.html.erb
Normal file
|
@ -0,0 +1,14 @@
|
|||
Tere,
|
||||
<br><br>
|
||||
Oleme eemaldanud Teie domeeni <%= @domain.name %> DNSSEC kirjed registrist.
|
||||
|
||||
Domeeni <%= @domain.name %> DNSSEC on nüüd välja lülitatud.
|
||||
<%= render 'mailers/shared/signatures/signature.et.html' %>
|
||||
<hr>
|
||||
<br><br>
|
||||
Hi,
|
||||
<br><br>
|
||||
We have removed DNSSEC data in our registry for domain <%= @domain.name %>.
|
||||
<br>
|
||||
DNSSEC has been turned off for <%= @domain.name %> as of now.
|
||||
<%= render 'mailers/shared/signatures/signature.en.html' %>
|
14
app/views/mailers/csync_mailer/dnssec_updated.html.erb
Normal file
14
app/views/mailers/csync_mailer/dnssec_updated.html.erb
Normal file
|
@ -0,0 +1,14 @@
|
|||
Tere,
|
||||
<br><br>
|
||||
Oleme uuendatud Teie domeeni <%= @domain.name %> DNSSEC andmeid registris.
|
||||
<br>
|
||||
Lisasime CDNSKEY väärtuses kajastatud võtme oma tsoonifaili ning on nüüd aktiveeritud.
|
||||
<%= render 'mailers/shared/signatures/signature.et.html' %>
|
||||
<hr>
|
||||
<br><br>
|
||||
Hi,
|
||||
<br><br>
|
||||
We have updated DNSSEC data in our registry for domain <%= @domain.name %>.
|
||||
<br>
|
||||
DNS key specified in CDNSKEY has been added to our zone file and is now taking effect.
|
||||
<%= render 'mailers/shared/signatures/signature.en.html' %>
|
Loading…
Add table
Add a link
Reference in a new issue