6 lines
126 B
Ruby
6 lines
126 B
Ruby
class ForumgroupsController < ApplicationController
|
|
|
|
def index
|
|
@groups = Forumgroup.all.sort{|s| s[:position]}
|
|
end
|
|
end |