This commit is contained in:
GotPPay
2017-10-16 20:21:19 +02:00
parent 8a7f8794cf
commit a75ea978f9
2554 changed files with 804218 additions and 109 deletions

View File

@@ -0,0 +1,16 @@
{% if r.methods %}
{% for mname in methods|sort -%}
{% set m = methods[mname] %}
{% include "./method-partial.ts" with m %}
{%- endfor -%}
{%- endif -%}{%- if r.methods && r.resources -%},{%- endif -%}
{% if r.resources %}
{%- for rname in resources|sort -%}
{%- set r = resources[rname] -%}
{{ rname }}: {
{%- include "./resource-partial.ts" with r -%}
}{%- if not loop.last -%},{%- endif -%}
{%- endfor -%}
{%- endif -%}