Sha256: 8f400d9ea95e2a27faa0b77e874e335e69f025ef266b0f931a8fea2059404a38
Contents?: true
Size: 197 Bytes
Versions: 36
Compression:
Stored size: 197 Bytes
Contents
# frozen_string_literal: true class ProductsController < AuthenticatedController def index @products = ShopifyAPI::Product.all(limit: 10) render(json: { products: @products }) end end
Version data entries
36 entries across 36 versions & 1 rubygems