mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			835 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			835 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
import { requests } from "../requests";
 | 
						|
 | 
						|
const prefix = '{{paths.prefix}}'
 | 
						|
 | 
						|
const routes = { {% for path in paths.static_paths %}
 | 
						|
  {{ path.router_camel }}: `${prefix}{{ path.route }}`,{% endfor %}
 | 
						|
{% for path in paths.function_paths  %}
 | 
						|
  {{path.router_camel}}: ({{path.var|join(", ")}}) => `${prefix}{{ path.js_route }}`,{% endfor %}
 | 
						|
}
 | 
						|
 | 
						|
export const {{paths.export_name}}API = { {% for path in paths.all_paths  %} {% for verb in path.http_verbs  %}
 | 
						|
   {% if verb.js_docs %}/** {{ verb.js_docs }} 
 | 
						|
   */ {% endif %}
 | 
						|
  async {{ verb.summary_camel }}({{ verb.function_args() }}) {
 | 
						|
    return await requests.{{ verb.request_type.value }}(routes.{{ path.route_object.router_camel }}{% if path.route_object.is_function %}({{verb.path_params()}}){% endif %}, {{ verb.query_params() }} {{ verb.payload() }})
 | 
						|
  }, {% endfor %} {% endfor %}
 | 
						|
}
 |