Class: Decidim::DummyResourcesController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
decidim-dev/lib/decidim/dev/test/rspec_support/feature.rb

Instance Method Summary collapse

Instance Method Details

#showObject



44
45
46
47
48
49
50
51
52
53
# File 'decidim-dev/lib/decidim/dev/test/rspec_support/feature.rb', line 44

def show
  @commentable = DummyResource.find(params[:id])
  render inline: %{
    <%= csrf_meta_tags %>
    <%= display_flash_messages %>
    <div class="reveal" id="loginModal" data-reveal></div>
    <%= javascript_include_tag 'application' %>
    <%= inline_comments_for(@commentable) %>
  }
end