mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 13:44:47 +02:00
Merge branch 'master' into registry-791
This commit is contained in:
commit
f8290f90c5
3 changed files with 90 additions and 92 deletions
|
@ -1,11 +0,0 @@
|
||||||
# As non-GDPR compliant, this controller is deprecated. Needs to be replaced with one that relies
|
|
||||||
# on the REST WHOIS API.
|
|
||||||
class Registrant::WhoisController < RegistrantController
|
|
||||||
def index
|
|
||||||
authorize! :view, :registrant_whois
|
|
||||||
|
|
||||||
if params[:domain_name].present?
|
|
||||||
@domain = WhoisRecord.find_by(name: params[:domain_name]);
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -45,11 +45,13 @@
|
||||||
<li class="<%= active_class %>">
|
<li class="<%= active_class %>">
|
||||||
<%= link_to t(:domains), registrant_domains_path %>
|
<%= link_to t(:domains), registrant_domains_path %>
|
||||||
</li>
|
</li>
|
||||||
<% end %>
|
<li class="<%= active_class %>">
|
||||||
<% active_class = %w(registrant/whois).include?(params[:controller]) ? 'active' :nil %>
|
<%= link_to 'WHOIS', 'https://whois.internet.ee' %>
|
||||||
|
</li>
|
||||||
<li class="<%= active_class %>">
|
<li class="<%= active_class %>">
|
||||||
<%= link_to 'Internet.ee', 'https://internet.ee' %>
|
<%= link_to 'Internet.ee', 'https://internet.ee' %>
|
||||||
</li>
|
</li>
|
||||||
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="nav navbar-nav navbar-right">
|
<ul class="nav navbar-nav navbar-right">
|
||||||
<% if user_signed_in? %>
|
<% if user_signed_in? %>
|
||||||
|
|
|
@ -9,9 +9,16 @@ class RegistrantLayoutTest < ActionDispatch::IntegrationTest
|
||||||
travel_to Time.zone.parse('2010-07-05')
|
travel_to Time.zone.parse('2010-07-05')
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_has_link_to_rest_whois
|
def teardown
|
||||||
|
super
|
||||||
|
|
||||||
|
travel_back
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_has_link_to_rest_whois_and_internet_ee
|
||||||
visit registrant_domains_url
|
visit registrant_domains_url
|
||||||
|
|
||||||
assert(has_link?('Internet.ee', href: 'https://internet.ee'))
|
assert(has_link?('Internet.ee', href: 'https://internet.ee'))
|
||||||
refute(has_link?('WHOIS', href: 'registrant/whois'))
|
assert(has_link?('WHOIS', href: 'https://whois.internet.ee'))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue