Make FilterBlock inner class of Kemal::FilterHandler

This commit is contained in:
Sdogruyol 2017-02-27 19:10:49 +03:00
parent 875737c446
commit 2fe27f0890

View file

@ -7,7 +7,7 @@ module Kemal
# This middleware is lazily instantiated and added to the handlers as soon as a call to `after_X` or `before_X` is made. # This middleware is lazily instantiated and added to the handlers as soon as a call to `after_X` or `before_X` is made.
def initialize def initialize
@tree = Radix::Tree(Array(Kemal::FilterBlock)).new @tree = Radix::Tree(Array(FilterBlock)).new
Kemal.config.add_filter_handler(self) Kemal.config.add_filter_handler(self)
end end
@ -69,7 +69,6 @@ module Kemal
private def radix_path(verb, path, type : Symbol) private def radix_path(verb, path, type : Symbol)
"#{type}/#{verb}/#{path}" "#{type}/#{verb}/#{path}"
end end
end
# :nodoc: # :nodoc:
class FilterBlock class FilterBlock
@ -84,3 +83,4 @@ module Kemal
end end
end end
end end
end