Class: MegaBar::ApplicationController
- Inherits:
-
ActionController::Base
- Object
- ActionController::Base
- MegaBar::ApplicationController
show all
- Defined in:
- app/controllers/mega_bar/application_controller.rb
Direct Known Subclasses
CheckboxesController, FieldDisplaysController, FieldsController, ModelDisplaysController, ModelsController, RadioButtonsController, RecordsFormatsController, SelectsController, TestersController, TextboxesController, TextreadsController, TmpFieldDisplaysController, TmpFieldsController, TmpModelDisplaysController, TmpModelsController, TmpRecordsFormatsController, TmpSelectsController, TmpTextboxesController, TmpTextreadsController
Instance Method Summary
collapse
Instance Method Details
#edit_view_template ⇒ Object
21
22
23
|
# File 'app/controllers/mega_bar/application_controller.rb', line 21
def edit_view_template
@edit_view_template ||= "mega_bar.html.erb"
end
|
#index_view_template ⇒ Object
15
16
17
|
# File 'app/controllers/mega_bar/application_controller.rb', line 15
def index_view_template
@index_view_template ||= "mega_bar.html.erb"
end
|
#new_view_template ⇒ Object
24
25
26
|
# File 'app/controllers/mega_bar/application_controller.rb', line 24
def new_view_template
@new_view_template ||= "mega_bar.html.erb"
end
|
#show_view_template ⇒ Object
18
19
20
|
# File 'app/controllers/mega_bar/application_controller.rb', line 18
def show_view_template
@show_view_template ||= "mega_bar.html.erb"
end
|