0
0
zero-blog/controller/welcome.rb
Gibheer 0e547febf1 add post controller
This adds the post controller to get the posts from the database and
make apply all filters needed to make it a workable result.
2013-10-26 14:56:55 +02:00

8 lines
86 B
Ruby

module Routes
class Welcome
def self.call(session)
Post
end
end
end