Fix Filter namespace

This commit is contained in:
Sdogruyol 2016-02-07 16:48:49 +02:00
parent e310de4f8a
commit 3f3f0d442e

View file

@ -38,15 +38,15 @@ module Kemal::Middleware
end end
def add_filters def add_filters
Kemal.config.add_handler Kemal::Filters::Filter.new Kemal.config.add_handler Kemal::Middleware::Filter.new
end end
def before(path = "*", options = {} of Symbol => String, &block : HTTP::Server::Context -> _) def before(path = "*", options = {} of Symbol => String, &block : HTTP::Server::Context -> _)
filter = Kemal.config.handlers.first as Kemal::Filters::Filter filter = Kemal.config.handlers.first as Kemal::Middleware::Filter
filter.add :before, path, options, &block filter.add :before, path, options, &block
end end
def after(path = "*", options = {} of Symbol => String, &block : HTTP::Server::Context -> _) def after(path = "*", options = {} of Symbol => String, &block : HTTP::Server::Context -> _)
filter = Kemal.config.handlers.first as Kemal::Filters::Filter filter = Kemal.config.handlers.first as Kemal::Middleware::Filter
filter.add :after, path, options, &block filter.add :after, path, options, &block
end end