Sha256: 3e5e3f4f6481e07628d84aafcd56ff2b31f5e4c052491c387b141bac4dbba62f

Contents?: true

Size: 535 Bytes

Versions: 3

Compression:

Stored size: 535 Bytes

Contents

<h2>Products</h2>

<ul>
  <% @products.each do |product| %>
    <li><%= link_to product.title, "https://#{@account_session.domain}/admin/products/#{product.id}", target: "_top" %></li>
  <% end %>
</ul>

<hr>

<h2>Webhooks</h2>

<% if @webhooks.present? %>
  <ul>
    <% @webhooks.each do |webhook| %>
      <li><%= webhook.topic %> : <%= webhook.address %></li>
    <% end %>
  </ul>
<% else %>
  <p>This app has not created any webhooks for this Shop. Add webhooks to your DuodealerApp initializer if you need webhooks</p>
<% end %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
duodealer_app-1.0.4 lib/generators/duodealer_app/home_controller/templates/index.html.erb
duodealer_app-1.0.3 lib/generators/duodealer_app/home_controller/templates/index.html.erb
duodealer_app-1.0.2 lib/generators/duodealer_app/home_controller/templates/index.html.erb