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/forums_controller.rb
2013-10-07 04:59:21 +02:00

11 lines
189 B
Ruby

class ForumsController < ApplicationController
def index
redirect_to :forumgroups
end
def show
@forum = Forum.find(params[:id])
@threads = @forum.forumthreads
end
end