Sha256: eed121377760352b24ca2ada5234c08a8f8874eea49151262a289422462c0506
Contents?: true
Size: 533 Bytes
Versions: 6
Compression:
Stored size: 533 Bytes
Contents
<h2>Products</h2> <ul> <% @products.each do |product| %> <li><%= link_to product.title, "https://#{@shop_session.url}/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 Store. Add webhooks to your SpiffyStoresApp initializer if you need webhooks</p> <% end %>
Version data entries
6 entries across 6 versions & 1 rubygems