Project

General

Profile

Download (379 Bytes) Statistics
| Branch: | Tag: | Revision:
module Api
module V1
class TemplateKindsController < V1::BaseController
api :GET, "/template_kinds/", "List all template kinds."
param :page, String, :desc => "paginate results"
param :per_page, String, :desc => "number of entries per request"

def index
@template_kinds = TemplateKind.paginate(paginate_options)
end
end
end
end
(30-30/32)