Class: C::ApplicationController
- Inherits:
-
ActionController::Base
- Object
- ActionController::Base
- C::ApplicationController
show all
- Defined in:
- app/controllers/c/application_controller.rb
Instance Method Summary
collapse
Instance Method Details
#current_ability ⇒ Object
11
12
13
|
# File 'app/controllers/c/application_controller.rb', line 11
def current_ability
Ability.new(current_user)
end
|
#layout ⇒ Object
7
8
9
|
# File 'app/controllers/c/application_controller.rb', line 7
def layout
devise_controller? ? 'c/cms_login_layout' : 'c/application'
end
|