2014-09-02 18:07:02 +05:30
|
|
|
# Provides a base class for Admin controllers to subclass
|
|
|
|
#
|
|
|
|
# Automatically sets the layout and ensures an administrator is logged in
|
|
|
|
class Admin::ApplicationController < ApplicationController
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :authenticate_admin!
|
2014-09-02 18:07:02 +05:30
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
def authenticate_admin!
|
|
|
|
return render_404 unless current_user.is_admin?
|
|
|
|
end
|
|
|
|
end
|