blob: bce9f69238577379d926b3c53cfdf427234ebd72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Provides a base class for Admin controllers to subclass
#
# Automatically sets the layout and ensures an administrator is logged in
class AdminController < ApplicationController
layout 'admin'
before_filter :authenticate_admin!
def authenticate_admin!
return render_404 unless current_user.is_admin?
end
end
|