Sha256: 47dbfe6acbbfcba826bef04425ebc5ce362e1f7c006fa13d6dbf3e17c631ef4d
Contents?: true
Size: 200 Bytes
Versions: 42
Compression:
Stored size: 200 Bytes
Contents
module Virgo class ImagesController < ApplicationController def index @images = Image.order(created_at: :desc).limit(20) render json: @images.map(&:redactor_json) end end end
Version data entries
42 entries across 42 versions & 1 rubygems