Class: PagesCore::AdminController

Inherits:
ApplicationController show all
Defined in:
app/controllers/pages_core/admin_controller.rb

Direct Known Subclasses

Admin::AdminController

Instance Attribute Summary

Attributes included from Authentication

#current_user

Class Method Summary collapse

Instance Method Summary collapse

Methods included from PoliciesHelper

#policy, #verify_policy, #verify_policy_with_proc

Methods included from ProcessTitler

inc_number_of_requests, original_title

Methods included from ErrorRenderer

#render_error

Methods included from Authentication

#authenticate!, #deauthenticate!, #logged_in?

Class Method Details

.underscoreObject

Get name of class with in lowercase, with underscores.



16
17
18
# File 'app/controllers/pages_core/admin_controller.rb', line 16

def underscore
  ActiveSupport::Inflector.underscore(to_s).split("/").last
end

Instance Method Details

#redirectObject



21
22
23
24
25
26
27
# File 'app/controllers/pages_core/admin_controller.rb', line 21

def redirect
  if Page.news_pages.any?
    redirect_to news_admin_pages_url(@locale)
  else
    redirect_to admin_pages_url(@locale)
  end
end