Files
danbooru/app/controllers/m/posts_controller.rb
2011-11-06 16:59:21 -05:00

15 lines
275 B
Ruby

module M
class PostsController < ApplicationController
layout "mobile"
def index
@post_set = PostSets::Post.new(params[:tags], params[:page])
@posts = @post_set.posts
end
def show
@post = Post.find(params[:id])
end
end
end