Don't show 'Download XML' link for deleted elements
This commit is contained in:
parent
09263bc4a1
commit
01d48694b4
2 changed files with 13 additions and 3 deletions
|
@ -5,7 +5,9 @@
|
|||
<%= render :partial => @type, :object => @feature %>
|
||||
|
||||
<div class='secondary-actions'>
|
||||
<%= link_to(t("browse.download_xml"), :controller => "api/#{@type.pluralize}", :action => :show) %>
|
||||
·
|
||||
<% if @feature.visible? %>
|
||||
<%= link_to(t("browse.download_xml"), :controller => "api/#{@type.pluralize}", :action => :show) %>
|
||||
·
|
||||
<% end %>
|
||||
<%= link_to(t("browse.view_history"), :action => "#{@type}_history") %>
|
||||
</div>
|
||||
|
|
|
@ -63,7 +63,15 @@ class BrowseControllerTest < ActionDispatch::IntegrationTest
|
|||
end
|
||||
|
||||
def test_read_node
|
||||
browse_check :node_path, create(:node).id, "browse/feature"
|
||||
node = create :node
|
||||
browse_check :node_path, node.id, "browse/feature"
|
||||
assert_select "a[href='#{api_node_path node}']", :count => 1
|
||||
end
|
||||
|
||||
def test_read_deleted_node
|
||||
node = create :node, :visible => false
|
||||
browse_check :node_path, node.id, "browse/feature"
|
||||
assert_select "a[href='#{api_node_path node}']", :count => 0
|
||||
end
|
||||
|
||||
def test_read_node_history
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue