Sha256: ee95cfe8eed477c75653b2429202509c5c7f1e2d427eebe2fbcfba9b2011379c
Contents?: true
Size: 530 Bytes
Versions: 28
Compression:
Stored size: 530 Bytes
Contents
<h2>Products</h2> <ul> <% @products.each do |product| %> <li><%= link_to product.title, "https://#{@shop_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 ShopifyApp initializer if you need webhooks</p> <% end %>
Version data entries
28 entries across 28 versions & 1 rubygems