Class: ApplicationController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
lib/generators/ideyabox/admin/templates/controllers/application_controller.rb

Instance Method Summary collapse

Instance Method Details

#layout_by_resourceObject



5
6
7
8
9
10
11
# File 'lib/generators/ideyabox/admin/templates/controllers/application_controller.rb', line 5

def layout_by_resource
  if devise_controller?
    "login"
  else
    "application"
  end
end