module-and-template-store/app/controllers/api/v1/extensions_controller.rb

16 lines
256 B
Ruby

module Api
module V1
class ExtensionsController < ApplicationController
respond_to :json
def index
respond_with Extension.all
end
def show
respond_with Extension.find(params[:id])
end
end
end
end