2020-10-06 04:41:18 +00:00
|
|
|
module Invidious::Routing
|
2021-08-11 10:36:25 +00:00
|
|
|
{% for http_method in {"get", "post", "delete", "options", "patch", "put", "head"} %}
|
2020-11-20 01:21:48 +00:00
|
|
|
|
2021-08-11 10:36:25 +00:00
|
|
|
macro {{http_method.id}}(path, controller, method = :handle)
|
|
|
|
{{http_method.id}} \{{ path }} do |env|
|
|
|
|
\{{ controller }}.\{{ method.id }}(env)
|
|
|
|
end
|
2020-10-06 04:41:18 +00:00
|
|
|
end
|
2021-08-11 10:36:25 +00:00
|
|
|
|
|
|
|
{% end %}
|
2020-10-06 04:41:18 +00:00
|
|
|
end
|