0
0
zero-blog/controller/route_not_found.rb

11 lines
235 B
Ruby
Raw Normal View History

2013-10-20 22:04:01 +02:00
module Routes
class RouteNotFound
def self.call(session)
session.response.status = 404
session.response.content_type = 'text/html'
session.response.body = 'This page does not exist!'
nil
end
end
end