invidious-mod-JP/src/invidious/helpers/macros.cr
2018-08-04 15:30:44 -05:00

19 lines
414 B
Crystal

macro add_mapping(mapping)
def initialize({{*mapping.keys.map { |id| "@#{id}".id }}})
end
def to_a
return [{{*mapping.keys.map { |id| "@#{id}".id }}}]
end
DB.mapping({{mapping}})
end
macro templated(filename)
render "src/invidious/views/#{{{filename}}}.ecr", "src/invidious/views/layout.ecr"
end
macro rendered(filename)
render "src/invidious/views/#{{{filename}}}.ecr"
end