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

17 lines
303 B
Ruby
Raw Normal View History

module Api
module V1
class TemplatesController < ApplicationController
2014-01-22 03:12:22 +00:00
# doorkeeper_for :all, :scopes => [:public]
respond_to :json
2013-12-25 12:34:53 +00:00
def index
respond_with Template.all
2013-12-25 12:34:53 +00:00
end
def show
respond_with Template.find(params[:id])
2013-12-25 12:34:53 +00:00
end
end
end
end