Fixed routing bug on (ex) admin controller.

This commit is contained in:
Benjamin Meichsner 2010-03-22 01:58:37 +01:00
parent 9a54d8504c
commit 571548dfbc
10 changed files with 9 additions and 15 deletions

View file

@ -0,0 +1,10 @@
class Admin::BaseController < ApplicationController
before_filter :authenticate_admin
def index
@user = self.current_user
@groups = Group.find(:all, :limit => 10, :order => 'created_on DESC', :conditions => {:deleted_at => nil})
@users = User.find(:all, :limit => 10, :order => 'created_on DESC')
end
end