11 lines
173 B
Ruby
11 lines
173 B
Ruby
|
class Admin::DashboardsController < ApplicationController
|
||
|
|
||
|
layout "new_admin"
|
||
|
before_filter :authenticate_user!
|
||
|
before_filter :is_admin?
|
||
|
|
||
|
def index
|
||
|
end
|
||
|
|
||
|
end
|