2013-12-26 09:49:49 +00:00
|
|
|
module Api
|
|
|
|
module V1
|
2014-02-13 06:51:23 +00:00
|
|
|
class TemplatesController < Api::V1::BaseController
|
|
|
|
before_action :authorize_client
|
|
|
|
|
2013-12-26 09:49:49 +00:00
|
|
|
respond_to :json
|
2013-12-25 12:34:53 +00:00
|
|
|
|
2013-12-26 09:49:49 +00:00
|
|
|
def index
|
|
|
|
respond_with Template.all
|
2013-12-25 12:34:53 +00:00
|
|
|
end
|
|
|
|
|
2013-12-26 09:49:49 +00:00
|
|
|
def show
|
|
|
|
respond_with Template.find(params[:id])
|
2013-12-25 12:34:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|