This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/controllers/forumthreads_controller.rb
2013-10-07 04:59:21 +02:00

6 lines
150 B
Ruby

class ForumthreadsController < ApplicationController
def index
f = Forum.find(params[:id])
redirect_to forum_path(f.forumgroup, f)
end
end