Sha256: 17f6440c591e986540cece9fa6a5b7698969ad32cd45f727eabe36f3d51845b5
Contents?: true
Size: 228 Bytes
Versions: 18
Compression:
Stored size: 228 Bytes
Contents
module Landable module Api class CategoriesController < ApiController def index respond_with Category.all end def show respond_with Category.find(params[:id]) end end end end
Version data entries
18 entries across 18 versions & 1 rubygems