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