9 lines
205 B
Ruby
9 lines
205 B
Ruby
class ForumgroupsController < ApplicationController
|
|
def index
|
|
@groups = Forumgroup.all.sort_by{|s| s[:position]}
|
|
end
|
|
|
|
def show
|
|
redirect_to forumgroups_path + "#forum-#{params[:id]}"
|
|
end
|
|
end |