20 lines
218 B
Ruby
20 lines
218 B
Ruby
class Forum::ForumsController < ApplicationController
|
|
layout "forum"
|
|
|
|
before_filter :auth_fuser
|
|
|
|
def index
|
|
|
|
@forums = Forum.all
|
|
end
|
|
|
|
|
|
def show
|
|
@forum = Forum.find(params[:id])
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|