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